aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/net18.C
blob: 81e38d370e3f145b8a5148e759b0e52d01479447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Build don't link:

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