forked from OSchip/llvm-project
17 lines
373 B
Objective-C
17 lines
373 B
Objective-C
// Compile with clang -g dwarfdump-objc.m -c -Wno-objc-root-class
|
|
|
|
@interface NSObject {} @end
|
|
|
|
|
|
@interface TestInterface
|
|
@property (readonly) int ReadOnly;
|
|
@property (assign) int Assign;
|
|
@property (readwrite) int ReadWrite;
|
|
@property (retain) NSObject *Retain;
|
|
@property (copy) NSObject *Copy;
|
|
@property (nonatomic) int NonAtomic;
|
|
@end
|
|
|
|
@implementation TestInterface
|
|
@end
|