blob: b2f1f8dc05adedcbf59d5033f5619d5dd9b30ad3 [file] [log] [blame]
// { dg-do compile { target c++11 } }
template<typename... Args>
int f(const Args&...);
void g()
{
int (*fp)(const int&, const float&) = &f;
}