summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic-ex5.C
blob: 2439a51c5a403e3e162dada5e0d186434c569905 (plain)
1
2
3
4
5
6
7
// { dg-options "-std=gnu++0x" }
template<typename... Types> void f(Types... values);

void g()
{
  f<int*, float*>(0, 0, 0); // Types is deduced to the sequence int*, float*, int
}