| // REQUIRES: x86-registered-target |
| // RUN: %clang_cc1 -emit-llvm -triple x86_64-apple-darwin10 -fexceptions -fobjc-exceptions -debug-info-kind=limited %s -o - | FileCheck %s |
| // CHECK: !DISubprogram(name: "-[InstanceVariablesEverywhereButTheInterface someString]" |
| @interface InstanceVariablesEverywhereButTheInterface |
| @interface InstanceVariablesEverywhereButTheInterface() |
| @property(readonly) NSString *someString; |
| @property(readonly) unsigned long someNumber; |
| @implementation InstanceVariablesEverywhereButTheInterface |
| unsigned long _someNumber; |
| @synthesize someString = _someString, someNumber = _someNumber; |
| @interface AutomaticSynthesis |
| @property(copy) NSString *someString; |
| @property unsigned long someNumber; |
| @implementation AutomaticSynthesis |