quakeforge/tools/qfcc/test/old/super.r
Bill Currie 49ca09a64f Clean up qfcc's test directory.
I don't remember what half these tests were for :/
2012-11-22 21:58:52 +09:00

14 lines
156 B
R

void __obj_exec_class (obj_module_t *msg) = #0;
@interface Foo
-init;
@end
@interface Bar : Foo
@end
@implementation Bar
-init
{
return [super init];
}