URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [overload/] [virtual1.C] - Rev 12
Compare with Previous | Blame | View Log
// Test that explicit scope suprresses virtual lookup even after an
// explicit object.
extern "C" int printf (const char *, ...);
struct A
{
virtual int f () { return 0; }
};
struct B: public A
{
int f () { return 1; }
int g() { return this->A::f(); }
};
int main()
{
B b;
return b.g();
}