summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p4484.C
blob: b0ec0c9fcebab62f4a6294b1a7fa8f730277f52d (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
// { dg-do assemble  }
// prms-id: 4484

class A {
  char buf[64];
};

typedef void (A::*pmf)();
typedef void (A::*pmfc)() const;

pmfc p = (pmfc)(pmf)0;

class B {
};

class D : public A, public B {
};

typedef int (B::*bmfp)();
typedef int (D::*dmfp)();

bmfp foo;

void bar(dmfp a) {
  bar(foo);
}