8sa1-gcc/gcc/testsuite/g++.old-deja/g++.mike/p4484.C
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

27 lines
299 B
C

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