mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-01 10:16:09 +00:00
14 lines
176 B
C
14 lines
176 B
C
// RUN: clang-cc -emit-llvm %s -o %t
|
|
|
|
#ifdef __APPLE__
|
|
#include <Carbon/Carbon.h>
|
|
|
|
void f() {
|
|
CFSTR("Hello, World!");
|
|
}
|
|
|
|
// rdar://6151192
|
|
void *G = CFSTR("yo joe");
|
|
|
|
#endif
|