// PR c++/51265 // { dg-options -std=c++0x } struct Funny { int print(int); }; template void c(); template void xx() { c(); } int main() { xx(); }