]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/variadic50.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic50.C
1 // { dg-do compile { target c++11 } }
2 int& f(int, double, ...);
3
4 template<typename... Args>
5 float& f(Args...);
6
7 float& g() {
8 return f(17, 3.14159, 3);
9 }
This page took 0.035216 seconds and 5 git commands to generate.