xref: /minix3/external/bsd/llvm/dist/clang/test/SemaObjC/undef-class-messagin-error.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -fsyntax-only -verify %s
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel Sambuc@interface _Child // expected-note{{'_Child' declared here}}
4*f4a2713aSLionel Sambuc+ (int) flashCache;
5*f4a2713aSLionel Sambuc@end
6*f4a2713aSLionel Sambuc
7*f4a2713aSLionel Sambuc@interface Child (Categ) // expected-error {{cannot find interface declaration for 'Child'; did you mean '_Child'?}}
8*f4a2713aSLionel Sambuc+ (int) flushCache2;
9*f4a2713aSLionel Sambuc@end
10*f4a2713aSLionel Sambuc
11*f4a2713aSLionel Sambuc@implementation OtherChild (Categ) // expected-error {{cannot find interface declaration for 'OtherChild'}}
12*f4a2713aSLionel Sambuc+ (int) flushCache2 { [super flashCache]; } // expected-error {{no @interface declaration found in class messaging of 'flushCache2'}}
13*f4a2713aSLionel Sambuc@end
14