func(Args &&...)1 template <class... Args> void func(Args&&...) {} f()2 void f() { 3 func(1, true, 'q'); 4 } 5