blob: 7e2215f2c23a5ef4381c43280b7373fe685427b5 [file] [log] [blame]
// { dg-options "-std=gnu++0x" }
int& f(...);
template<typename... Args>
float& f(Args...);
float& g() {
return f(17, 3.14159);
}