// { dg-do compile { target c++11 } } template int& f(Args&...); template float& f(const Args&...); int& g(int x, float y) { return f(x, y); }