2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-01-08 05:01:41 +08:00
|
|
|
|
2010-01-07 08:17:44 +08:00
|
|
|
@interface _Child // expected-note{{'_Child' declared here}}
|
2009-01-08 05:01:41 +08:00
|
|
|
+ (int) flashCache;
|
|
|
|
@end
|
|
|
|
|
2010-01-04 02:01:57 +08:00
|
|
|
@interface Child (Categ) // expected-error {{cannot find interface declaration for 'Child'; did you mean '_Child'?}}
|
2009-01-08 05:01:41 +08:00
|
|
|
+ (int) flushCache2;
|
|
|
|
@end
|
|
|
|
|
2010-01-04 02:01:57 +08:00
|
|
|
@implementation OtherChild (Categ) // expected-error {{cannot find interface declaration for 'OtherChild'}}
|
2009-01-08 05:01:41 +08:00
|
|
|
+ (int) flushCache2 { [super flashCache]; } // expected-error {{no @interface declaration found in class messaging of 'flushCache2'}}
|
|
|
|
@end
|