* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr31442.C
blobb4c737c603c86b4fb7cc716be72015fe757aa8b1
1 // { dg-do compile { target c++11 } }
2 template<typename... T, T = 0> struct A {}; // { dg-error "parameter packs|T|the end|parameter packs|anonymous" }
4 struct B
6   template <template <typename...> class C> B(C<int>);
7 };
9 B b = A<int>();