[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / fn-ptr1.C
blobc0e7d988524a7b78631535ed4c7e4d74b38312a9
1 // PR c++/48162
3 struct A { };
4 A (*f)();
5 template <class T> void g() { f(); }