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