2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2007-10-04 08:22:33 +08:00
|
|
|
|
2009-04-12 16:46:44 +08:00
|
|
|
@interface INTF1
|
|
|
|
@required // expected-error {{directive may only be specified in protocols only}}
|
|
|
|
- (int) FooBar;
|
|
|
|
- (int) FooBar1;
|
|
|
|
- (int) FooBar2;
|
|
|
|
@optional // expected-error {{directive may only be specified in protocols only}}
|
|
|
|
+ (int) C;
|
|
|
|
|
|
|
|
- (int)I;
|
|
|
|
@end
|
2007-09-21 23:40:54 +08:00
|
|
|
|
|
|
|
@protocol p1,p2,p3;
|
|
|
|
|
|
|
|
@protocol p1;
|
|
|
|
|
|
|
|
@protocol PROTO1
|
2009-04-12 16:46:44 +08:00
|
|
|
@required
|
|
|
|
- (int) FooBar;
|
|
|
|
@optional
|
|
|
|
- (void) MyMethod1;
|
|
|
|
+ (int) S;
|
2007-09-21 23:40:54 +08:00
|
|
|
@end
|
|
|
|
|
2009-04-12 16:46:44 +08:00
|
|
|
|
2009-04-12 16:43:13 +08:00
|
|
|
@protocol PROTO2<p1>
|
2007-09-21 23:40:54 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol p1 @end
|
|
|
|
|
2008-11-24 06:46:27 +08:00
|
|
|
@protocol PROTO<p1> // expected-note {{previous definition is here}}
|
2007-09-21 23:40:54 +08:00
|
|
|
@end
|
|
|
|
|
2009-04-07 07:43:32 +08:00
|
|
|
@protocol PROTO<p1> // expected-warning {{duplicate protocol definition of 'PROTO'}}
|
2007-09-21 23:40:54 +08:00
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol PROTO3<p1, p1>
|
|
|
|
@end
|
|
|
|
|
|
|
|
@protocol p2 <p1>
|
|
|
|
@end
|
|
|
|
|
2009-04-12 16:43:13 +08:00
|
|
|
@protocol PROTO4 <p1, p2, PROTO, PROTO3, p3>
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
// rdar://6771034
|
|
|
|
@protocol XX;
|
|
|
|
@protocol YY <XX> // Use of declaration of XX here should not cause a warning.
|
|
|
|
- zz;
|
2007-09-21 23:40:54 +08:00
|
|
|
@end
|
2009-04-12 16:45:55 +08:00
|
|
|
|
|
|
|
|
|
|
|
// Detect circular dependencies.
|
|
|
|
@protocol B;
|
|
|
|
@protocol C < B > // expected-note{{previous definition is here}}
|
|
|
|
@end
|
|
|
|
@protocol A < C >
|
|
|
|
@end
|
|
|
|
@protocol B < A > // expected-error{{protocol has circular dependency}}
|
|
|
|
@end
|
|
|
|
|