1 // PR c++/48162
2 
3 struct A { };
4 A (*f)();
g()5 template <class T> void g() { f(); }
6