blob: e7717a04859ca0bbf759c8c966a8ce153af61263 [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!
Steve Naroffb82c50f2007-11-11 17:19:15 +00009- (void) meth { [self contents]; }
Steve Naroffb1c7ad92007-11-11 00:10:47 +000010@end
11