aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/obj-c++.dg/const-cfstring-5.mm
blob: 1274d5d0889482227b058dc55b761d9fd73b754c (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
/* 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