forked from OSchip/llvm-project
7 lines
192 B
C++
7 lines
192 B
C++
|
// RUN: clang-cc %s -fsyntax-only -verify
|
||
|
typedef const struct __CFString * CFStringRef;
|
||
|
#define CFSTR __builtin___CFStringMakeConstantString
|
||
|
|
||
|
void f() {
|
||
|
(void)CFStringRef(CFSTR("Hello"));
|
||
|
}
|