xref: /minix3/external/bsd/llvm/dist/clang/test/Sema/varargs-x86-64.c (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s -triple x86_64-apple-darwin9
2 
3 // rdar://6726818
f1()4 void f1() {
5   const __builtin_va_list args2;
6   (void)__builtin_va_arg(args2, int); // expected-error {{first argument to 'va_arg' is of type 'const __builtin_va_list' and not 'va_list'}}
7 }
8 
9