// PR c++/51878 // { dg-do compile { target c++11 } } template auto indirect_call(F f, T... t) -> decltype(f(t...)) { return f(t...); } template struct VariadicBind { F f; T t; template auto operator()(A... a) -> decltype(indirect_call(f, t, a...)) { return indirect_call(f, t, a...); } }; template void apply(F f) { f(); } template void apply(F f, V1 v1, V... v) { apply(VariadicBind{f, v1}, v...); } void func(int, int) { } int main() { apply(func, 0, 0); }