MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice15002.d
blob50d13dd9bd43e5de1bf6e84bca2533a93317449a
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice15002.d(10): Error: array index 5 is out of bounds `x[0 .. 3]`
5 fail_compilation/ice15002.d(10): Error: array index 5 is out of bounds `x[0 .. 3]`
6 ---
7 */
9 int[][3] x = [];
10 int* p = &x[5][0];