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