(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
variadic43.C
// { dg-do compile { target c++11 } }
template<typename... Args>
int f(const Args&...);

void g()
{
  int (*fp)(const int&, const float&) = &f;
}