2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / ext / complit2.C
blob9fe00c42ea0743e42e4c301755455b4160600e3f
1 // PR c++/12726
2 // Origin: Vladimir Zidar  <mr_W@mindnever.org>
3 // Reduced version: Volker Reichelt  <reichelt@igpm.rwth-aachen.de>
4 // { dg-options "" }
6 struct A
8     A();
9     A(const A&);
10     A(int);
13 struct B
15     A a;
18 void foo()
20     B b;
21     b = (B){0};