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