aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc.dg/const-cfstring-5.m
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/objc.dg/const-cfstring-5.m')
-rw-r--r--gcc/testsuite/objc.dg/const-cfstring-5.m25
1 files changed, 25 insertions, 0 deletions
diff --git a/gcc/testsuite/objc.dg/const-cfstring-5.m b/gcc/testsuite/objc.dg/const-cfstring-5.m
new file mode 100644
index 00000000000..1274d5d0889
--- /dev/null
+++ b/gcc/testsuite/objc.dg/const-cfstring-5.m
@@ -0,0 +1,25 @@
+/* APPLE LOCAL file 4154928 */
+/* Test if constant CFStrings may be passed back as ObjC strings. */
+/* Author: Ziemowit Laski */
+
+/* { dg-options "-fconstant-cfstrings" } */
+/* { dg-do compile { target *-*-darwin* } } */
+
+#include <objc/Object.h>
+
+@interface Foo: Object {
+ char *cString;
+ unsigned int len;
+}
++ (Foo *)description;
+@end
+
+@interface Bar: Object
++ (Foo *) getString: (int) which;
+@end
+
+@implementation Bar
++ (Foo *) getString: (int) which {
+ return which? [Foo description]: @"Hello";
+}
+@end