* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic93.C
blob63a1103a8613864628c5d44e574b9a1a5c140c27
1 // PR c++/35297
2 // { dg-do compile { target c++11 } }
4 template <class T=int, class... ARGS> 
5 struct test2 {};
7 int main()
9         test2<> a;
10         return 0;