1// 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 17