URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.martin/] [pmf1.C] - Rev 305
Compare with Previous | Blame | View Log
// { dg-do run }
// Based on a test case by Andrew Bell <andrew.bell@bigfoot.com>
// Check for pointer-to-virtual-function calls on
// bases without virtual functions.
struct B{};
struct D: public B{
virtual void foo();
};
void D::foo(){}
int main()
{
B *b = new D;
void (B::*f)() = static_cast<void (B::*)()>(&D::foo);
(b->*f)();
}