// PR c++/69743 // { dg-do compile { target c++11 } } template void f(int, T... d) { } template void f(T... d) { f(1, d...); } void g(void) { f(1.0); }