diff options
Diffstat (limited to 'gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm')
-rw-r--r-- | gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm b/gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm new file mode 100644 index 000000000..31c2e509b --- /dev/null +++ b/gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm @@ -0,0 +1,23 @@ +/* { dg-do compile } */ + +@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 |