// PR c++/15299 template void fun_ptr(T (*)()); template T bar(); template void foo () { fun_ptr(bar); }