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