Home | History | Annotate | Download | only in SemaObjC

Lines Matching full:interface

6 @interface INTF : FOO	// expected-error {{attempting to use the forward class 'FOO' as superclass of 'INTF'}}
9 @interface FOO
14 @interface INTF1 : FOO
17 @interface INTF2 : INTF1 // expected-note {{previous definition is here}}
23 @interface INTF2 : INTF1 // expected-error {{duplicate interface definition for class 'INTF2'}}
30 @interface NSObject @end
36 @interface XCElementMainImp {
50 @interface A : B {} // expected-error {{attempting to use the forward class 'B' as superclass of 'A'}}
53 @interface B : A {}