f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
8 lines
282 B
C
8 lines
282 B
C
// RUN: %clang_cc1 -fsyntax-only -verify %s -triple x86_64-apple-darwin9
|
|
|
|
// rdar://6726818
|
|
void f1() {
|
|
const __builtin_va_list args2;
|
|
(void)__builtin_va_arg(args2, int); // expected-error {{first argument to 'va_arg' is of type 'const __builtin_va_list' and not 'va_list'}}
|
|
}
|
|
|