(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.jason/
pmf2.C
// { dg-do assemble  }
// PRMS Id: 4484 (bug 3)
// Bug: g++ does implicitly take the address of methods passed to fns.

struct A {
  void f ();
};

void g (void (A::*)());

void h () {
  g (A::f);			// { dg-error "" } failed conversion to method pointer
}