1 // PR c++/70001
2 // { dg-do compile { target c++11 } }
3 // { dg-require-effective-target size24plus }
4 
5 struct B
6 {
7   int a;
BB8   constexpr B () : a (0) { }
9 };
10 
11 struct A
12 {
13   B b[1 << 19];
14 } c;
15