1 // PR c++/84558
2 // { dg-do compile { target c++14 } }
3 
AA4 struct A { static int i; constexpr A () { i = 0; } };
5 struct B { A a[2][3][4]; };
6 B b;
7