quakeforge/tools/qfcc/test/dealloc-warn2.r
Bill Currie b103709bfd [qfcc] Fix incorrect build error in dealloc-warn2
It was dying due to an undefined symbol rather than the warning.
2023-02-26 20:09:21 +09:00

47 lines
870 B
R

#pragma warn error
void __obj_exec_class (struct obj_module *msg) = #0;
id obj_msgSend_super (Super *class, SEL op, ...) = #0;
id obj_msgSend (Super *class, SEL op, ...) = #0;
@interface Object
{
Class isa;
}
-(void)dealloc;
-(void)release;
@end
@interface derived : Object
{
id something;
}
@end
@implementation Object
-(void) dealloc
{
// this is the root of the hierarchy, so no super to call, thus
// must not check for [super dealloc]
}
-(void) release
{
}
@end
@implementation derived
-(void) dealloc
{
// as this is a derived class, failure to call [super dealloc] will
// result in a memory leak (yes, there could be special allocators
// involved, in which case something will be needed to inform the
// compiler)
[super release];
[something dealloc];
}
@end
int main ()
{
return 1; // test fails if compile succeeds (with -Werror)
}