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