aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/pmf8.C
blob: 35b7d8c43b220e50d541550cc1396b059c5ecef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// { dg-do run  }
// PRMS Id: 6905

class Parent {
public:
  void DoSomething() { return; }
  int i;
};

class Child : public Parent {
public:
};

class User {
public:
  void DoAnyThing(void (Parent::*)(void)) { return; }
  void DoAThing(void (Child::*)(void)) { return; }
  void DoAThing(int Child::*) { return; }
};


int main()
{
  User a;

  a.DoAnyThing(&Child::DoSomething);
  a.DoAThing(&Child::DoSomething);
  a.DoAThing(&Parent::DoSomething);
  a.DoAThing(&Parent::i);
}