mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
26 lines
298 B
Mathematica
26 lines
298 B
Mathematica
|
// RUN: %llvmgcc -x objective-c -c %s -o /dev/null -m64
|
||
|
// rdar://5812818
|
||
|
|
||
|
@interface NSObject
|
||
|
@end
|
||
|
|
||
|
@interface Base:NSObject
|
||
|
@property int whatever;
|
||
|
@end
|
||
|
|
||
|
@interface Oops:Base
|
||
|
@end
|
||
|
|
||
|
@implementation Base
|
||
|
@synthesize whatever;
|
||
|
@end
|
||
|
|
||
|
@implementation Oops
|
||
|
|
||
|
-(void)whatthe {
|
||
|
self.whatever=1;
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|