mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
230 B
D
10 lines
230 B
D
/*
|
|
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];
|