blob: b1174c7d97b34f03dae8c4d3a0ce8911d6843bfe [file] [log] [blame]
struct A {
void f(int = 0) const;
};
typedef void (A::*PF)(int) const;
void f()
{
PF pf = &A::f;
}