* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / temp-va-arg-bug.C
blob616f2f4b0f0a3408516d2f29c706bb29b96088f6
1 // { dg-do compile { target c++11 } }
2 // { dg-options "-Wno-abi" { target arm_eabi } }
3 #include <stdarg.h>
5 struct S { };
6 void f(S const &);
8 void g(va_list args)
10   f(va_arg(args, S));