// PR c++/51265 // { dg-do compile { target c++11 } } struct Funny { int print(int); }; template void c(); template void xx() { c(); } int main() { xx(); }