15 lines · plain
1// RUN: %clang_cc1 -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s2 3@interface I14// CHECK: !DIObjCProperty(name: "p1"5// CHECK-SAME: line: [[@LINE+2]]6// CHECK-SAME: attributes: 23167@property int p1;8@end9 10@implementation I111@synthesize p1;12@end13 14void foo(I1 *iptr) {}15