(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
test23674.d
// 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]);
}