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