blob: d50aec487eb19045c1dbdf74f40b9d45849b7f30 [file] [log] [blame]
// { dg-do assemble }
// { dg-options "-g" }
struct X {
const int x[4];
};
struct A {
A();
A(const A&);
};
struct B {
A a;
int b[4];
};
struct C {
A a;
C() { B b=B(); };
};