blob: 7b808b4aab40e3267421a9e4f0518cbfc7a5ac4d [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -emit-llvm %s -o %t
Chris Lattnereb52b442008-10-06 07:43:09 +00002
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