URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [expr/] [ptrmem6a.C] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
struct Z {
int f();
};
int Z::f() { return 7; }
struct Z z;
int (Z::*m)() = &Z::f;
struct Z*p = &z;
Go to most recent revision | Compare with Previous | Blame | View Log