* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic47.C
blob53916a934b0939c493bf8b28afb540204a000ab3
1 // { dg-do compile { target c++11 } }
2 template<typename T> struct wrap { };
4 template<typename... Args>
5 int& f(const Args&...);
7 template<typename... Args>
8 float& f(const wrap<Args>&...);
10 int& g(int x, float y, double z)
12   return f(x, y, z);
15 float& h(wrap<int> x, wrap<float> y, wrap<double> z)
17   return f(x, y, z);