1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail229.d(11): Error: array index 18446744073709551615 overflow
5 fail_compilation/fail229.d(11): Error: array dimension overflow
6 ---
7 */
8 
9 // Issue 1936 - Error with no line number (array dimension overflow)
10 
11 static int[] x = [-1: 1];
12