template void sink(T... a); template void packfuncT(T... a) { sink(a...); } void f() { packfuncT(1, 2, 3); }