blob: 352f29160e530061cb40ba2d9d46adae601cf0c2 [file] [log] [blame]
// RUN: %clang_cc1 -verify -Wno-objc-root-class %s
// expected-no-diagnostics
@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