]> gcc.gnu.org Git - gcc.git/blame - gcc/testsuite/g++.dg/cpp0x/variadic-ex5.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-ex5.C
CommitLineData
4b2e63de 1// { dg-do compile { target c++11 } }
d6a85c8d
DG
2template<typename... Types> void f(Types... values);
3
4void g()
5{
6 f<int*, float*>(0, 0, 0); // Types is deduced to the sequence int*, float*, int
7}
This page took 7.734203 seconds and 5 git commands to generate.