summaryrefslogtreecommitdiffstats
path: root/test/Sema/varargs-x86-64.c
blob: 2cfedc1b37e7a608e2bdf3f4fd18ec3044b7c0be (plain)
1
2
3
4
5
6
7
8
// 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 '__builtin_va_list const' and not 'va_list'}}
}