summaryrefslogtreecommitdiff
path: root/clang/test/Parser/enhanced-proto-1.m
blob: fa6e4138f1c1eb7069a9a3f124cfdf3a5d588820 (about) (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) FOO1;
@required 
- (void) REQ;
@optional
@end

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