1 // { dg-do compile { target c++11 } }
2 template<typename... Types> void f(Types... values);
3 
g()4 void g()
5 {
6   f<int*, float*>(0, 0, 0); // Types is deduced to the sequence int*, float*, int
7 }
8