[libcxx][test] Fix a test for the range of file offsets on ARMv7 Linux targets. ...
[llvm-project.git] / clang / test / SemaObjC / missing-atend-metadata.m
blobf235ab94d82175bba2353557d9423e3a9e9ca3c4
1 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fsyntax-only -verify -Wno-objc-root-class %s 
3 @interface I0  // expected-note {{receiver is instance of class declared here}}
4 @end
6 @implementation I0 // expected-note {{implementation started here}}
7 - meth { return 0; }
9 @interface I1 : I0 // expected-error {{missing '@end'}}
10 @end
12 @implementation I1 // expected-note {{implementation started here}}
13 -(void) im0 { self = [super init]; } // expected-warning {{not found}}
15 @interface I2 : I0 // expected-error {{missing '@end'}}
16 - I2meth;
17 @end
19 @implementation I2 // expected-note {{implementation started here}}
20 - I2meth { return 0; }
22 @implementation  I2(CAT) // expected-error 2 {{missing '@end'}} expected-note {{implementation started here}}