aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm')
-rw-r--r--gcc-4.9/gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm b/gcc-4.9/gcc/testsuite/obj-c++.dg/enhanced-proto-2.mm
new file mode 100644
index 000000000..31c2e509b
--- /dev/null
+++ b/gcc-4.9/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