F.cpp 147 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 template <typename... T> void sink(T... a); template <typename... T> void packfuncT(T... a) { sink(a...); } void f() { packfuncT(1, 2, 3); }