summaryrefslogtreecommitdiffstats
path: root/clang/test/SemaObjC/enhanced-proto-2.m
blob: 352f29160e530061cb40ba2d9d46adae601cf0c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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
OpenPOWER on IntegriCloud