OSDN Git Service

* g++.old-deja/g++.other/init5.C: Remove xfail for powerpc-linux.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / debug8.C
1 // { dg-do assemble  }
2 // { dg-options "-g" }
3
4 struct X {
5   const int x[4];
6 };
7
8 struct A {
9   A();
10   A(const A&);
11 };
12
13 struct B {
14   A a;
15   int b[4];
16 };
17
18 struct C {
19   A a;
20   C() { B b=B(); };
21 };