2 // GROUPS passed pointers-to-members
9 typedef int (N::*pmfn)(int);
15 int (C::*f)(int) = &C::f1;
18 The compiler should not crash on the line below; this change fixes it:
19 * cp-tree.c (list_hash_lookup_or_cons): Make sure the type doesn't
20 have TYPE_PTRMEMFUNC_P set before we try to build its
24 C::pmfn h = &C::N::g1;
26 int (C::N::*g)(int) = &C::N::g2;