(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
b23620.d
// https://issues.dlang.org/show_bug.cgi?id=23620
struct Index
{
    uint value;
    alias value this;
}

enum i = Index();
int[i] a;
static assert(a.length == 0);