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
6 @interface InstanceVariablesEverywhereButTheInterface
9 @interface InstanceVariablesEverywhereButTheInterface()
11 NSString *_someString;
14 @property(readonly) NSString *someString;
15 @property(readonly) unsigned long someNumber;
18 @implementation InstanceVariablesEverywhereButTheInterface
20 unsigned long _someNumber;
22 @synthesize someString = _someString, someNumber = _someNumber;
25 @interface AutomaticSynthesis
29 @property(copy) NSString *someString;
30 @property unsigned long someNumber;
33 @implementation AutomaticSynthesis