mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
304 B
D
11 lines
304 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail229.d(11): Error: array index 18446744073709551615 overflow
|
|
fail_compilation/fail229.d(11): Error: array dimension overflow
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=1936
|
|
// Error with no line number (array dimension overflow)
|
|
static int[] x = [-1: 1];
|