blob: 6d162ac4e21b009c25b7bee6a40df6fca8a4d749 [file] [log] [blame]
Fariborz Jahanian4b1e2752009-01-07 21:01:41 +00001// RUN: clang -fsyntax-only -verify %s
2
3@interface _Child
4+ (int) flashCache;
5@end
6
7@interface Child (Categ) // expected-error {{cannot find interface declaration for 'Child'}}
8+ (int) flushCache2;
9@end
10
11@implementation Child (Categ) // expected-error {{cannot find interface declaration for 'Child'}}
12+ (int) flushCache2 { [super flashCache]; } // expected-error {{no @interface declaration found in class messaging of 'flushCache2'}}
13@end