d: Merge upstream dmd, druntime 4ca4140e58, phobos 454dff14d.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test23674.d
blob0f11de94d9da4c50b54981eb9ff5ba5479179d1a
1 // https://issues.dlang.org/show_bug.cgi?id=23674
3 /*
4 TEST_OUTPUT:
5 ---
6 fail_compilation/test23674.d(14): Error: array index 2 is out of bounds `arr[0 .. 2]`
7 fail_compilation/test23674.d(14): Error: array index 3 is out of bounds `arr[0 .. 2]`
8 ---
9 */
11 void main()
13 string[2] arr;
14 assert(arr[2] == arr[3]);