2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / synth8.C
blob29abc2ae657126ce19b2199e18d8445941284c5c
1 // { dg-do assemble  }
2 // Bug: the synthesized constructor for A tries to use the mem-initializer
3 // list for the B constructor.
5 struct A
7   virtual ~A();
8 };
10 struct B
12   B();
13   char* x;
14   A* a;
17 B::B()
18 : x(0), a(new A())