// PR c++/62659 struct D { typedef int (D::*cont_func)(); template struct B; template void wait(B ***); int done(); template void fix() { wait<&D::done>(0); } };