1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuctypedef int INTF3; // expected-note {{previous definition is here}} 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc@interface SUPER @end // expected-note {{previous definition is here}} 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc@interface OBJECT @end 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel Sambuc@interface INTF : OBJECT 10*f4a2713aSLionel Sambuc@end 11*f4a2713aSLionel Sambuc 12*f4a2713aSLionel Sambuc@implementation INTF @end // expected-note {{previous definition is here}} 13*f4a2713aSLionel Sambuc 14*f4a2713aSLionel Sambuc@implementation INTF // expected-error {{reimplementation of class 'INTF'}} 15*f4a2713aSLionel Sambuc@end 16*f4a2713aSLionel Sambuc 17*f4a2713aSLionel Sambuc 18*f4a2713aSLionel Sambuc@interface INTF1 : OBJECT 19*f4a2713aSLionel Sambuc@end 20*f4a2713aSLionel Sambuc 21*f4a2713aSLionel Sambuc@implementation INTF1 : SUPER // expected-error {{conflicting super class name 'SUPER'}} 22*f4a2713aSLionel Sambuc@end 23*f4a2713aSLionel Sambuc 24*f4a2713aSLionel Sambuc@interface INTF2 25*f4a2713aSLionel Sambuc@end 26*f4a2713aSLionel Sambuc 27*f4a2713aSLionel Sambuc@implementation INTF2 : SUPR // expected-error {{cannot find interface declaration for 'SUPR', superclass of 'INTF2'}} 28*f4a2713aSLionel Sambuc@end 29*f4a2713aSLionel Sambuc 30*f4a2713aSLionel Sambuc@implementation INTF3 @end // expected-error {{redefinition of 'INTF3' as different kind of symbol}} 31*f4a2713aSLionel Sambuc 32*f4a2713aSLionel Sambuc@implementation INTF4 @end // expected-warning {{cannot find interface declaration for 'INTF4'}} 33*f4a2713aSLionel Sambuc 34*f4a2713aSLionel Sambuc@class INTF5; // expected-note{{forward declaration of class here}} 35*f4a2713aSLionel Sambuc 36*f4a2713aSLionel Sambuc@implementation INTF5 { // expected-warning {{cannot find interface declaration for 'INTF5'}} 37*f4a2713aSLionel Sambuc int x; 38*f4a2713aSLionel Sambuc} 39*f4a2713aSLionel Sambuc@end 40*f4a2713aSLionel Sambuc 41