Merge from trunk
[official-gcc.git] / gcc / testsuite / g++.dg / init / aggr10.C
blobe494e20a3bf116c647c9d3044208c110b7aa0738
1 // PR c++/59886
3 struct A { A (); ~A (); };
4 struct B { A b[4]; };
5 struct C { B c[5]; };
6 const C e = {};