Daniel Dunbar | d7d5f02 | 2009-03-24 02:24:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -verify %s |
Fariborz Jahanian | 4b1e275 | 2009-01-07 21:01:41 +0000 | [diff] [blame] | 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 |