1 // PR c++/59886 2 3 struct A { A (); ~A (); }; 4 struct B { A b[4]; }; 5 struct C { B c[5]; }; 6 const C e = {}; 7