* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic152.C
blobd7dccc53f6b41d182797a03aa543f8eca0d9aaff
1 // PR c++/54440
2 // { dg-do compile { target c++11 } }
4 template <class...T> struct A
6   template <template <T> class... TP, class U> struct B { };
7 };
9 template <int I> struct C { };
10 template <char C> struct D { };
12 A<int,char>::B<C,D,float> b;