1 // REQUIRES: x86-registered-target
2 // RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin10 -fexceptions -fobjc-exceptions -debug-info-kind=limited %s -o - | FileCheck %s
4 // CHECK: !DISubprogram(name: "-[InstanceVariablesEverywhereButTheInterface someString]"
8 @interface InstanceVariablesEverywhereButTheInterface
11 @interface InstanceVariablesEverywhereButTheInterface()
13 NSString *_someString;
16 @property(readonly) NSString *someString;
17 @property(readonly) unsigned long someNumber;
20 @implementation InstanceVariablesEverywhereButTheInterface
22 unsigned long _someNumber;
25 @synthesize someString = _someString, someNumber = _someNumber;
32 @interface AutomaticSynthesis
36 @property(copy) NSString *someString;
37 @property unsigned long someNumber;
40 @implementation AutomaticSynthesis
41 @synthesize someString;
42 @synthesize someNumber;