1 struct A {
2   void f(int = 0) const;
3 };
4 
5 typedef void (A::*PF)(int) const;
6 
f()7 void f()
8 {
9   PF pf = &A::f;
10 }
11