OSDN Git Service

fix
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / debug8.C
1 // Build don't link:
2 // Special g++ 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 };