[OpenACC] Enable 'attach' clause for combined constructs
[llvm-project.git] / clang / test / FixIt / fixit-add-synthesize-to-property.m
blob19b2f4b73f0134dcaae9990e54c26073c1f5d8a1
1 // RUN: %clang_cc1 -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
3 @protocol P1
5 @property int prop;
7 @end
9 @interface I <P1>
11 @end
13 @implementation I
14 @end // CHECK: fix-it:{{.*}}:{[[@LINE]]:1-[[@LINE]]:1}:"@synthesize prop;\n\n"