1// RUN: %clang_cc1 -S -emit-llvm -g %s -o - | FileCheck %s
2
3@interface I1
4// CHECK: !MDObjCProperty(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