blob: f235ab94d82175bba2353557d9423e3a9e9ca3c4 [file] [log] [blame]
Patrick Beardacfbe9e2012-04-06 18:12:22 +00001// RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -verify -Wno-objc-root-class %s
Fariborz Jahanianc0577942011-04-22 22:02:28 +00002
Fariborz Jahanian478536b2013-05-15 15:27:35 +00003@interface I0 // expected-note {{receiver is instance of class declared here}}
Fariborz Jahanianc0577942011-04-22 22:02:28 +00004@end
5
Erik Verbruggenc6c8d932011-12-06 09:25:23 +00006@implementation I0 // expected-note {{implementation started here}}
Fariborz Jahanianc0577942011-04-22 22:02:28 +00007- meth { return 0; }
8
Erik Verbruggenc6c8d932011-12-06 09:25:23 +00009@interface I1 : I0 // expected-error {{missing '@end'}}
Fariborz Jahanianc0577942011-04-22 22:02:28 +000010@end
11
Erik Verbruggenc6c8d932011-12-06 09:25:23 +000012@implementation I1 // expected-note {{implementation started here}}
Argyrios Kyrtzidisb6c6a582012-02-07 16:50:53 +000013-(void) im0 { self = [super init]; } // expected-warning {{not found}}
Fariborz Jahanianc0577942011-04-22 22:02:28 +000014
Erik Verbruggenc6c8d932011-12-06 09:25:23 +000015@interface I2 : I0 // expected-error {{missing '@end'}}
Fariborz Jahanianc0577942011-04-22 22:02:28 +000016- I2meth;
17@end
18
Erik Verbruggenc6c8d932011-12-06 09:25:23 +000019@implementation I2 // expected-note {{implementation started here}}
Fariborz Jahanianc0577942011-04-22 22:02:28 +000020- I2meth { return 0; }
21
Erik Verbruggenc6c8d932011-12-06 09:25:23 +000022@implementation I2(CAT) // expected-error 2 {{missing '@end'}} expected-note {{implementation started here}}