blob: 0f11de94d9da4c50b54981eb9ff5ba5479179d1a [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=23674
/*
TEST_OUTPUT:
---
fail_compilation/test23674.d(14): Error: array index 2 is out of bounds `arr[0 .. 2]`
fail_compilation/test23674.d(14): Error: array index 3 is out of bounds `arr[0 .. 2]`
---
*/
void main()
{
string[2] arr;
assert(arr[2] == arr[3]);
}