1 // REQUIRES: x86-registered-target
2 // RUN: %clang_cc1 -no-opaque-pointers -emit-llvm -triple x86_64-apple-darwin10 -fexceptions -fobjc-exceptions -debug-info-kind=limited %s -o - | FileCheck %s
4 // CHECK: !DISubprogram(name: "-[InstanceVariablesEverywhereButTheInterface someString]"
10 @interface InstanceVariablesEverywhereButTheInterface
13 @interface InstanceVariablesEverywhereButTheInterface()
15 NSString *_someString;
18 @property(readonly) NSString *someString;
19 @property(readonly) unsigned long someNumber;
22 @implementation InstanceVariablesEverywhereButTheInterface
24 unsigned long _someNumber;
27 @synthesize someString = _someString, someNumber = _someNumber;
34 @interface AutomaticSynthesis
38 @property(copy) NSString *someString;
39 @property unsigned long someNumber;
42 @implementation AutomaticSynthesis
43 @synthesize someString;
44 @synthesize someNumber;