1 // { dg-do compile { target c++11 } }
2 template<typename... Args>
3 int f(const Args&...);
4 
g()5 void g()
6 {
7   int (*fp)(const int&, const float&) = &f;
8 }
9