[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / SemaObjC / class-def-test-1.m
blob95a259bd527bc22eea9b2313d6c7578560fd04a6
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @protocol SUPER;
5 @interface SUPER <SUPER> @end // expected-warning {{cannot find protocol definition for 'SUPER'}}
7 typedef int INTF; //  expected-note {{previous definition is here}}
9 @interface INTF @end // expected-error {{redefinition of 'INTF' as different kind of symbol}}
11 @interface OBJECT @end  // expected-note {{previous definition is here}}
13 @interface INTF1 : OBJECT @end // expected-note {{previous definition is here}}
15 @interface INTF1 : OBJECT @end // expected-error {{duplicate interface definition for class 'INTF1'}}
17 typedef int OBJECT; // expected-error {{redefinition of 'OBJECT' as different kind of symbol}}
19 typedef int OBJECT2; // expected-note {{previous definition is here}}
20 @interface INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of symbol}}
23 @protocol PROTO;
25 @interface INTF3 : PROTO @end // expected-error {{cannot find interface declaration for 'PROTO', superclass of 'INTF3'}}
27 // Make sure we allow the following (for GCC compatibility).
28 @interface NSObject @end
29 typedef NSObject TD_NSObject;
30 @interface XCElementUnit : TD_NSObject {}
31 @end