aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p4484.C
blob: 64aab1609653c4d34ef680b000e4762b43830412 (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
// Build don't link:
// 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);
}