* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-25.C
bloba388ae41089d49a31eb6c9c54e72d50497dba747
1 // PR c++/54859
2 // { dg-do compile { target c++11 } }
4 template<unsigned N>
5   using Num = int;
7 template<typename... Types>
8   using Count = Num<sizeof...(Types)>;
10 Count<int, char, void> i;