mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 21:32:10 +00:00
17 lines
373 B
Mathematica
17 lines
373 B
Mathematica
|
// 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
|