* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic173.C
bloba0ca89b764f12ef2862bad2d18edd01fe0fc4c09
1 // PR c++/84770
2 // { dg-do compile { target c++11 } }
4 typedef int T;
6 template<T&...> struct A {};
8 int i;
10 A<i> a;