blob: 517a5f6824a7c60e35b8a4e3aab4940396823d96 [file] [log] [blame]
Steve Naroffb1c7ad92007-11-11 00:10:47 +00001// RUN: clang -fsyntax-only -verify %s
2
3@interface foo
4- (void)meth;
5@end
6
7@implementation foo
8- (void) contents {} // No declaration in @interface!
9- (void) meth { [self contents]; } // expected-warning {{method '-contents' not found (return type defaults to 'id')}}
10@end
11