blob: 54fbee2ac39cfea5fc600cfad0af897973f6662c [file] [log] [blame]
Frederic Rissb3c99122014-10-10 15:51:10 +00001// Compile with clang -g dwarfdump-objc.m -c -Wno-objc-root-class
2
3@interface NSObject {} @end
4
5
6@interface TestInterface
7@property (readonly) int ReadOnly;
8@property (assign) int Assign;
9@property (readwrite) int ReadWrite;
10@property (retain) NSObject *Retain;
11@property (copy) NSObject *Copy;
12@property (nonatomic) int NonAtomic;
13@end
14
15@implementation TestInterface
16@end