* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-explicit2.C
blob4a80745293a7716f7c54234da9645f2c8f79cf29
1 // PR c++/56774
2 // { dg-require-effective-target c++11 }
4 template <class ... Args>
5 struct mytype {};
7 template <class T, class ... Args>
8 void something( mytype<T, Args...> )
9 { }
11 int main()
13   something<int, char, bool>( mytype<int, char, bool>() );