1// RUN: %clang_cc1 -S -emit-llvm -g %s -o - | FileCheck %s
2
3// CHECK:  !"0x4200\00p1\005\00\00\002316", {{.*}}} ; [ DW_TAG_APPLE_property ]
4@interface I1
5@property int p1;
6@end
7
8@implementation I1
9@synthesize p1;
10@end
11
12void foo(I1 *iptr) {}
13