quakeforge/tools/qfcc/test/old/class-end.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

23 lines
172 B
R

@interface foo
-init;
@end
@implementation foo
-init
{
return self;
}
@protocol baz
-blah;
@end
@interface bar
-init;
@end
@implementation bar
-init
{
return self;
}