15 lines · plain
1// RUN: %clang_cc1 -fdiagnostics-parseable-fixits %s 2>&1 | FileCheck %s2 3@protocol P14 5@property int prop;6 7@end8 9@interface I <P1>10 11@end12 13@implementation I14@end // CHECK: fix-it:{{.*}}:{[[@LINE]]:1-[[@LINE]]:1}:"@synthesize prop;\n\n"15