// PR c++/88612 // { dg-do compile { target c++11 } } // { dg-options "-fpack-struct -Waddress-of-packed-member" } // { dg-prune-output "taking address of packed member" } 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); }