quakeforge/tools/qfcc/test/foo.r

14 lines
122 B
R
Raw Normal View History

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