rt_gccstream/gcc/testsuite/g++.old-deja/g++.other/debug8.C

22 lines
192 B
C

// { 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(); };
};