blob: de1d56a2d773fd96e94c4352a65c7bd4b1524402 [file] [log] [blame]
// RUN: %clang_cc1 -verify %s
@protocol MyProto1
@optional
- (void) FOO;
@optional
- (void) FOO1;
@optional
- (void) REQ;
@optional
@end
@interface MyProto2 <MyProto1>
- (void) FOO2;
- (void) FOO3;
@end
@implementation MyProto2
- (void) FOO2{}
- (void) FOO3{}
@end