* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic49.C
blob49c26753efd9ef39add09801bcf60f640d306909
1 // { dg-do compile { target c++11 } }
2 int& f(...);
4 template<typename... Args>
5 float& f(Args...);
7 float& g() {
8   return f(17, 3.14159);