Commit 30dca1c8 by Jason Merrill

parser.c (cp_parser_postfix_expression): Set idk properly for object->scope::member.

        * parser.c (cp_parser_postfix_expression): Set idk properly for
        object->scope::member.

From-SVN: r62784
parent ff5d863f
// 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();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment