(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
parse/
ptrmem1.C
struct A {
  void f(int = 0) const;
};

typedef void (A::*PF)(int) const;

void f()
{
  PF pf = &A::f;
}