0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-01 15:01:00 +00:00
quakeforge/tools/qfcc/test/foo.r

13 lines
122 B
R

#include <Object.h>
@interface Foo : Object
-free;
@end
@implementation Foo
-free
{
[super free];
[self free];
}
@end