blob: 13cb7895779ef1f1ec1a8c404752bdfd0de73d53 (
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 <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
|