1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -debug-info-kind=limited %s -o %t
2 // RUN: grep DW_TAG_member %t | count 5
7 @interface InstanceVariablesEverywhereButTheInterface
10 @interface InstanceVariablesEverywhereButTheInterface()
12 NSString *_someString;
15 @property(readonly) NSString *someString;
16 @property(readonly) unsigned long someNumber;
19 @implementation InstanceVariablesEverywhereButTheInterface
21 unsigned long _someNumber;
23 @synthesize someString = _someString, someNumber = _someNumber;
26 @interface AutomaticSynthesis
30 @property(copy) NSString *someString;
31 @property unsigned long someNumber;
34 @implementation AutomaticSynthesis