1 /*
2 ---
3 fail_compilation/fail4611.d(15): Error: Vec[2147483647] size 4 * 2147483647 exceeds 0x7fffffff size limit for static array
4 ---
5 */
6 
7 struct Vec
8 {
9     int x;
10 }
11 
main()12 void main()
13 {
14     Vec[ptrdiff_t.max] a;
15 }
16