Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / class-def-test-1.m
blob98a887ecab1f6c5767d7cfac89fbeceb72b4ab56
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
3 @protocol SUPER; // expected-note {{protocol 'SUPER' has no definition}}
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 2 {{previous definition is here}}
20 @interface INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of symbol}}
22 @implementation INTF2 : OBJECT2 @end // expected-error {{redefinition of 'OBJECT2' as different kind of symbol}}
24 @protocol PROTO;
26 @interface INTF3 : PROTO @end // expected-error {{cannot find interface declaration for 'PROTO', superclass of 'INTF3'}}
28 // Make sure we allow the following (for GCC compatibility).
29 @interface NSObject @end
30 typedef NSObject TD_NSObject;
31 @interface XCElementUnit : TD_NSObject {}
32 @end
34 // Make sure we don't typo-correct to ourselves.
35 @interface SomeClassSub : SomeClassSup // expected-error{{cannot find interface declaration for 'SomeClassSup', superclass of 'SomeClassSub'}}
36 @end