Revert "[llvm] Improve llvm.objectsize computation by computing GEP, alloca and mallo...
[llvm-project.git] / clang / test / SemaObjC / interface-1.m
blobba7728d74776310b7fa6851a1691661b3f5efb8e
1 // RUN: %clang_cc1 -triple i386-apple-darwin9 -fobjc-runtime=macosx-fragile-10.5 %s -fsyntax-only -verify
3 @interface NSWhatever :
4 NSObject     // expected-error {{cannot find interface declaration for 'NSObject'}}
5 <NSCopying>  // expected-error {{no type or protocol named 'NSCopying'}}
6 @end
8 @interface A
10   int x
11 }  // expected-error {{expected ';' at end of declaration list}}
12 @end
14 @interface INT1
15 @end
17 void test2(void) {
18     INT1 b[3];          // expected-error {{array of interface 'INT1' is invalid (probably should be an array of pointers)}}
19     INT1 *c = &b[0];
20     ++c;
23 @interface FOO  // expected-note {{previous definition is here}}
24 - (void)method;
25 @end
27 @interface FOO  // expected-error {{duplicate interface definition for class 'FOO'}}
28 - (void)method2;
29 @end