* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr31445.C
blobb4542818237991ab54c33f615b72d1b309aa2a66
1 // { dg-do compile { target c++11 } }
2 template <typename... T> struct A
4   void foo(T...);
5   A(T... t) { foo(t); } // { dg-error "18:parameter packs|t" }
6 };
8 A<int> a(0);