blob: 50d13dd9bd43e5de1bf6e84bca2533a93317449a [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice15002.d(10): Error: array index 5 is out of bounds `x[0 .. 3]`
fail_compilation/ice15002.d(10): Error: array index 5 is out of bounds `x[0 .. 3]`
---
*/
int[][3] x = [];
int* p = &x[5][0];