blob: 46b8b4a09741f9781160e9e4cb79e15d95779cca [file] [log] [blame]
// RUN: clang -fsyntax-only -verify %s
@interface Foo
- iMethod;
+ cMethod;
@end
@interface A
@end
@interface B : A
- (void)instanceMethod;
+ classMethod;
@end
@implementation B
- (void)instanceMethod {
[super iMethod]; // expected-warning{{method '-iMethod' not found (return type defaults to 'id')}}
}
+ classMethod {
[super cMethod]; // expected-warning{{method '+cMethod' not found (return type defaults to 'id')}}
}
@end