[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / expr / ptrmem6a.C
blob8dad81c5889afddb7a5dff45568427f292c2de7d
1 struct Z {
2   int f();
3 };
5 int Z::f() { return 7; }
7 struct Z z;
8 int (Z::*m)() = &Z::f;
9 struct Z*p = &z;