/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / pr84558.C
blob40d7ef6856196f2bb9acd9a38a35245be9bb46ef
1 // PR c++/84558
2 // { dg-do compile { target c++14 } }
4 struct A { static int i; constexpr A () { i = 0; } };
5 struct B { A a[2][3][4]; };
6 B b;