blob: 49c26753efd9ef39add09801bcf60f640d306909 [file] [log] [blame]
// { dg-do compile { target c++11 } }
int& f(...);
template<typename... Args>
float& f(Args...);
float& g() {
return f(17, 3.14159);
}