summaryrefslogtreecommitdiff
path: root/test/Parser/enhanced-proto-1.m
blob: b80eb7d09d8fab5dbcea36c2e8a137a79e2a0c91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: clang -cc1 -fsyntax-only -verify %s

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

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