xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/debug-info-property3.m (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
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