* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic43.C
blobb2f1f8dc05adedcbf59d5033f5619d5dd9b30ad3
1 // { dg-do compile { target c++11 } }
2 template<typename... Args>
3 int f(const Args&...);
5 void g()
7   int (*fp)(const int&, const float&) = &f;