aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.mike/net18.C
blob: 2123c8152425299be8de8acb914af4133e7df3d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// { 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;
}