blob: ebaec523a00e968f2e9c293a2bff904ddf29738e [file] [log] [blame]
/* APPLE LOCAL file radar 4757423 */
/* Check for warnings about missing [super finalize] calls. */
/* { dg-do compile } */
@interface Foo {
void *isa;
}
- (void) finalize;
- (void) some_other;
@end
@interface Bar: Foo {
void *casa;
}
- (void) finalize;
@end
@interface Baz: Bar {
void *usa;
}
- (void) finalize;
@end
@implementation Foo
- (void) finalize {
isa = 0; /* Should not warn here. */
}
- (void) some_other {
isa = (void *)-1;
}
@end
@implementation Bar
- (void) finalize {
casa = 0;
[super some_other];
} /* { dg-warning "method possibly missing a .super finalize. call" } */
@end
@implementation Baz
- (void) finalize {
usa = 0;
[super finalize]; /* Should not warn here. */
}
@end