(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test20181.d
module test20181;

struct InversionList
{
    ubyte[] byCodepoint() { return null; }
}

void main()
{
    static foreach (ch; InversionList().byCodepoint) { }
}