1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s -triple x86_64-apple-darwin9 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc // rdar://6726818 f1()4*f4a2713aSLionel Sambucvoid f1() { 5*f4a2713aSLionel Sambuc const __builtin_va_list args2; 6*f4a2713aSLionel Sambuc (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*f4a2713aSLionel Sambuc } 8*f4a2713aSLionel Sambuc 9