* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr32252.C
blob715ad27db8ad4300bc6f1f9853bec4733baa4208
1 // { dg-do compile { target c++11 } }
2 int x[5];
4 template<int M, int N, int (&... p)[N]> struct A;
6 template<int M> struct A<M,5,x> {};
8 A<0,5,x> a;