rt_gccstream/gcc/testsuite/g++.dg/cpp0x/variadic49.C

10 lines
134 B
C

// { dg-options "-std=gnu++0x" }
int& f(...);
template<typename... Args>
float& f(Args...);
float& g() {
return f(17, 3.14159);
}