struct A {
  void f(int = 0) const;
};

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

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


syntax highlighted by Code2HTML, v. 0.9.1