rt_gccstream/gcc/testsuite/g++.old-deja/g++.mike/net18.C

22 lines
335 B
C

// { 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;
}