(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp1y/
pr84558.C
// PR c++/84558
// { dg-do compile { target c++14 } }

struct A { static int i; constexpr A () { i = 0; } };
struct B { A a[2][3][4]; };
B b;