OSDN Git Service

2008-01-15 Douglas Gregor <doug.gregor@gmail.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / variadic-ex5.C
1 // { dg-options "-std=gnu++0x" }
2 template<typename... Types> void f(Types... values);
3
4 void g()
5 {
6   f<int*, float*>(0, 0, 0); // Types is deduced to the sequence int*, float*, int
7 }