* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic46.C
blob0ea4ba6a7e6e458697c0c79e3a33b6a8cbff3be7
1 // { dg-do compile { target c++11 } }
2 template<typename... Args>
3 int& f(Args&...);
5 template<typename... Args>
6 float& f(const Args&...);
8 int& g(int x, float y)
10   return f(x, y);