blob: 8dad81c5889afddb7a5dff45568427f292c2de7d [file] [log] [blame]
struct Z {
int f();
};
int Z::f() { return 7; }
struct Z z;
int (Z::*m)() = &Z::f;
struct Z*p = &z;