URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [init/] [static2.C] - Rev 26
Go to most recent revision | Compare with Previous | Blame | View Log
// PR 14804
// { dg-do run }
struct A {
virtual void foo() = 0;
};
struct B : public A {
virtual void bar() = 0;
};
typedef void (A::*mfptr)();
struct D {
mfptr p;
};
static const D ds[] = {
{ reinterpret_cast<mfptr>(&B::bar) },
};
int main()
{
return 0;
}
Go to most recent revision | Compare with Previous | Blame | View Log