URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [expr/] [ptrmem6a.C] - Rev 327
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