aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/gnu-runtime-1.mm
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/obj-c++.dg/gnu-runtime-1.mm')
-rw-r--r--gcc-4.9/gcc/testsuite/obj-c++.dg/gnu-runtime-1.mm19
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/obj-c++.dg/gnu-runtime-1.mm b/gcc-4.9/gcc/testsuite/obj-c++.dg/gnu-runtime-1.mm
new file mode 100644
index 000000000..c73cd384c
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/obj-c++.dg/gnu-runtime-1.mm
@@ -0,0 +1,19 @@
+/* Test that compiling for the GNU runtime works (regardless of
+ the system runtime used). */
+/* Author: Ziemowit Laski <zlaski@apple.com> */
+/* { dg-do compile } */
+/* { dg-skip-if "" { *-*-* } { "-fnext-runtime" } { "" } } */
+
+#include "../objc-obj-c++-shared/TestsuiteObject.h"
+
+@interface FooBar: TestsuiteObject
+- (void)boo;
+@end
+
+int main ()
+{
+ id fooBarInst = [[FooBar alloc] init];
+ [fooBarInst boo];
+ return 0;
+}
+