* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr31434.C
blobafb719f17c89ddd27dd5f478153a527f37c64d85
1 // { dg-do compile { target c++11 } }
2 template<typename... T> int foo(const T&) // { dg-error "not expanded with|T" }
4  union { T t; }; // { dg-error "not expanded with|T" }
5  return t;
8 void bar()
10   foo(0); // { dg-error "no matching" }