blob: 568ba5dde12953a06ff88444d7ae9b75ade9572c [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -fsyntax-only -verify
Anders Carlsson79cbc7d2009-11-14 21:45:58 +00002typedef const struct __CFString * CFStringRef;
3#define CFSTR __builtin___CFStringMakeConstantString
4
5void f() {
6 (void)CFStringRef(CFSTR("Hello"));
Daniel Dunbara5728872009-12-15 20:14:24 +00007}
Douglas Gregor85910982010-02-12 05:48:04 +00008
9void a() { __builtin_va_list x, y; ::__builtin_va_copy(x, y); }