* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-ex11.C
blob9991fa2fd5161ab0a64b2a0c04ad5cae39b5497c
1 // { dg-do compile { target c++11 } }
2 template<typename... Types> 
3   void f(Types... args);
5 void g() {
6   f(); // okay: args contains no arguments
7   f(1); // okay: args contains one int argument
8   (2, 1.0); // okay: args contains two arguments, an int and a double