xref: /llvm-project/clang/test/FixIt/fixit-add-synthesize-to-property.m (revision 6c9af50cc815df58ed18a0a17225a41745f0107f)
1// RUN: %clang_cc1 -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s
2
3@protocol P1
4
5@property int prop;
6
7@end
8
9@interface I <P1>
10
11@end
12
13@implementation I
14@end // CHECK: fix-it:{{.*}}:{[[@LINE]]:1-[[@LINE]]:1}:"@synthesize prop;\n\n"
15