blob: d3168fc6c1c7d01fe841f5d763dcb88323c16780 [file] [log] [blame]
// PR c++/19406
// { dg-do compile }
struct A
{
virtual int foo();
double d;
};
struct B : public A
{
A::d;
};
B b;