* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-ref1.C
blob441d386ad81c99a965489584245a5df98f2668cd
1 // PR c++/79470
2 // { dg-do compile { target c++11 } }
4     template < const int&... > struct AA;
6     template < > struct AA<> { };
8     template < const int& II, const int&... Is >
9     struct AA<II,Is...> { };