URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [net18.C] - Rev 699
Compare with Previous | Blame | View Log
// { dg-do assemble }
class ClassA {
public:
typedef ClassA& (*PMFV)(const char*);
static PMFV setMapper(PMFV);
static PMFV _mapper;
};
class ClassB {
public:
typedef ClassB& (*PMFV)(const char*);
};
ClassA::PMFV ClassA::setMapper(ClassA::PMFV newFunc)
{
PMFV oldFunc = _mapper;
_mapper = newFunc;
return oldFunc;
}