aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc.dg/strings/const-cfstring-5.m
blob: 98bb7c5bddc1b57b5d696d580169bb1c32246694 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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