aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm')
-rw-r--r--gcc-4.9/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm b/gcc-4.9/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm
new file mode 100644
index 000000000..98bb7c5bd
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm
@@ -0,0 +1,26 @@
+/* Test if constant CFStrings may be passed back as ObjC strings. */
+/* Author: Ziemowit Laski */
+
+/* So far, CFString is darwin-only. */
+/* { dg-do compile { target *-*-darwin* } } */
+/* { dg-skip-if "NeXT only" { *-*-* } { "-fgnu-runtime" } { "" } } */
+/* { dg-options "-mconstant-cfstrings" } */
+
+#include <Foundation/NSObject.h>
+
+@interface Foo: NSObject {
+ char *cString;
+ unsigned int len;
+}
++ (Foo *)description;
+@end
+
+@interface Bar: NSObject
++ (Foo *) getString: (int) which;
+@end
+
+@implementation Bar
++ (Foo *) getString: (int) which {
+ return which? [Foo description]: @"Hello";
+}
+@end