aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm')
-rw-r--r--gcc-4.8.1/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm26
1 files changed, 0 insertions, 26 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm b/gcc-4.8.1/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm
deleted file mode 100644
index 13cb78957..000000000
--- a/gcc-4.8.1/gcc/testsuite/obj-c++.dg/strings/const-cfstring-5.mm
+++ /dev/null
@@ -1,26 +0,0 @@
-/* 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 <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