blob: f92dc8c1771172d39625c8048aac0b32a67ac633 [file] [log] [blame]
Chris Lattnereb52b442008-10-06 07:43:09 +00001// RUN: clang -emit-llvm %s -o %t
2
3#ifdef __APPLE__
4#include <Carbon/Carbon.h>
5
6void f() {
7 CFSTR("Hello, World!");
8}
9
Chris Lattner4bf203c2008-10-06 07:43:28 +000010// rdar://6151192
Chris Lattnereb52b442008-10-06 07:43:09 +000011void *G = CFSTR("yo joe");
12
13#endif