2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2012-10-19 20:44:48 +08:00
|
|
|
// expected-no-diagnostics
|
2008-09-05 04:01:15 +08:00
|
|
|
|
|
|
|
@protocol P0
|
|
|
|
-bar;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface A <P0>
|
|
|
|
@end
|
|
|
|
|
2008-09-05 05:54:53 +08:00
|
|
|
// Interface conforms to inherited protocol
|
2008-09-05 04:01:15 +08:00
|
|
|
|
|
|
|
@interface B0 : A <P0>
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation B0
|
|
|
|
@end
|
|
|
|
|
2008-09-05 05:54:53 +08:00
|
|
|
// Interface conforms to a protocol which extends another. The other
|
|
|
|
// protocol is inherited, and extended methods are implemented.
|
2008-09-05 04:01:15 +08:00
|
|
|
|
|
|
|
@protocol P1 <P0>
|
|
|
|
-foo;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface B1 : A <P1>
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation B1
|
2009-07-22 08:43:08 +08:00
|
|
|
-foo { return 0; };
|
2008-09-05 04:01:15 +08:00
|
|
|
@end
|
|
|
|
|
2008-09-05 05:54:53 +08:00
|
|
|
// Interface conforms to a protocol whose methods are provided by an
|
|
|
|
// alternate inherited protocol.
|
2008-09-05 04:01:15 +08:00
|
|
|
|
|
|
|
@protocol P2
|
|
|
|
-bar;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface B2 : A <P2>
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation B2
|
|
|
|
@end
|
|
|
|
|
2008-09-05 05:54:53 +08:00
|
|
|
// Interface conforms to a protocol whose methods are provided by a base class.
|
2008-09-05 04:01:15 +08:00
|
|
|
|
|
|
|
@interface A1
|
|
|
|
-bar;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface B3 : A1 <P2>
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation B3
|
|
|
|
@end
|
|
|
|
|