1*f558acf4SDavid Goldman// RUN: %clang_cc1 -fsyntax-only -verify %s
2*f558acf4SDavid Goldman// RUN: cp %s %t
3*f558acf4SDavid Goldman// RUN: not %clang_cc1 -pedantic -Werror -fixit -x objective-c %t
4*f558acf4SDavid Goldman// RUN: %clang_cc1 -pedantic -Werror -x objective-c %t
5*f558acf4SDavid Goldman
6*f558acf4SDavid Goldman__attribute__((objc_root_class))
7*f558acf4SDavid Goldman@interface NSObject
8*f558acf4SDavid Goldman@end
9*f558acf4SDavid Goldman
10*f558acf4SDavid Goldman@interface Foo : NSObject
11*f558acf4SDavid Goldman- (void)fooey;  // expected-note{{method 'fooey' declared here}}
12*f558acf4SDavid Goldman@end
13*f558acf4SDavid Goldman
14*f558acf4SDavid Goldman@implementation Foo  // expected-warning{{method definition for 'fooey' not found}}
15*f558acf4SDavid Goldman@end
16