aboutsummaryrefslogtreecommitdiff
path: root/test/SemaObjC/enhanced-proto-2.m
blob: 0450d7ba9debf22917ca1fd112ad9a2e2e16f2be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: clang-cc -verify %s

@protocol MyProto1 
@optional
- (void) FOO;
@optional
- (void) FOO;
@optional 
- (void) REQ;
@optional
@end

@interface  MyProto2 <MyProto1>
- (void) FOO2;
- (void) FOO3;
@end

@implementation MyProto2
- (void) FOO2{}
- (void) FOO3{}
@end