* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic139.C
bloba1c64f30f6c279be81302bfbf9309b49ad9f3b98
1 // Origin: PR c++/53609
2 // { dg-do compile { target c++11 } }
4 template<class...I> struct List {};
5 template<int T> struct Z {static const int value = T;};
6 template<int...T> using LZ = List<Z<T>...>;
8 template<class...U>
9 struct F
11   using N = LZ<U::value...>;
14 F<Z<1>, Z<2> >::N A;