OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / fn-ptr1.C
1 // PR c++/48162
2
3 struct A { };
4 A (*f)();
5 template <class T> void g() { f(); }