Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/gcc/testsuite/obj-c++.dg/enhanced-proto-1.mm

19 lines
277 B
Plaintext

/* Test use of @optional/@required keywords in @protocol class. */
/* { dg-do compile } */
@protocol MyProto1
@optional
- (void) FOO;
@optional
- (void) FOO;
@required
- (void) REQ;
@optional
@end
@protocol MyProto2 <MyProto1>
- (void) FOO2;
@optional
- (void) FOO3;
@end