1// RUN: %clang_cc1 -S -emit-llvm -debug-info-kind=limited %s -o - | FileCheck %s
2
3@interface I1
4// CHECK: !DIObjCProperty(name: "p1"
5// CHECK-SAME:            line: [[@LINE+2]]
6// CHECK-SAME:            attributes: 2316
7@property int p1;
8@end
9
10@implementation I1
11@synthesize p1;
12@end
13
14void foo(I1 *iptr) {}
15