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