Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / debug8.C
blobd50aec487eb19045c1dbdf74f40b9d45849b7f30
1 // { dg-do assemble  }
2 // { dg-options "-g" }
4 struct X {
5   const int x[4];
6 };
8 struct A {
9   A();
10   A(const A&);
13 struct B {
14   A a;
15   int b[4];
18 struct C {
19   A a;
20   C() { B b=B(); };