aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm
blob: 5964dfb09688698fdd8d7225979b50a2594925d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* { dg-do compile } */
// { dg-additional-options "-Wno-objc-root-class" }

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

@interface  MyProto2 <MyProto1>
@required 		/* { dg-error ".@required. is allowed in @protocol context only" }  */
- (void) FOO2;
@optional		/* { dg-error ".@optional. is allowed in @protocol context only" }  */
- (void) FOO3;
@end

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