blob: d283e2c291448c3633b90a6eee3d9700b7ef7da4 [file] [log] [blame]
// { dg-do assemble }
// Origin: Mark Mitchell <mark@codesourcery.com>
struct B {
struct X {};
};
struct D : public B {
void X();
struct X x;
void f();
};
void D::f()
{
struct X y;
}