// PR c++/55542 // { dg-do compile { target c++11 } } template struct B { template B (O *o, void (O::*f) (P ... p)) {} }; class C { void foo (void *, int); template void bar (A ... a); B c; B d; C (int) : c (this, &C::bar), d (this, &C::foo) {} }; template void C::bar (A ...) { }