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