2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2007-10-04 08:22:33 +08:00
|
|
|
|
2007-09-22 08:01:35 +08:00
|
|
|
@interface INTF1 @end
|
|
|
|
|
|
|
|
@protocol p1,p2,p3;
|
|
|
|
|
|
|
|
@protocol p1;
|
|
|
|
|
|
|
|
@protocol PROTO1
|
|
|
|
- (INTF1<p1>*) meth;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol p1 @end
|
|
|
|
|
|
|
|
@interface I1 <p1> @end
|
|
|
|
|
2008-07-26 11:47:43 +08:00
|
|
|
@interface E1 <p2> @end // expected-warning {{cannot find protocol definition for 'p2'}}
|
2007-09-22 08:01:35 +08:00
|
|
|
|
|
|
|
@protocol p2 @end
|
|
|
|
|
|
|
|
|
|
|
|
@interface I2 <p1,p2> @end
|
|
|
|
|
2008-07-26 11:47:43 +08:00
|
|
|
@interface E2 <p1,p2,p3> @end // expected-warning {{cannot find protocol definition for 'p3'}}
|
2007-09-22 08:01:35 +08:00
|
|
|
|
2011-11-15 06:10:01 +08:00
|
|
|
@class U1, U2; // expected-note {{forward declaration of class here}}
|
2007-09-22 08:01:35 +08:00
|
|
|
|
2011-06-24 07:16:19 +08:00
|
|
|
@interface E3 : U1 @end // expected-error {{attempting to use the forward class 'U1' as superclass of 'E3'}}
|
2007-09-22 08:01:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
@interface I3 : E3 @end
|
|
|
|
|
|
|
|
@interface U2 @end
|
|
|
|
|
|
|
|
@interface I4 : U2 <p1,p2>
|
|
|
|
@end
|