blob: 114b6ca5f6f423a6eef3497d4b8fda69230efeb3 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
Fariborz Jahanian4b1e2752009-01-07 21:01:41 +00002
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