(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test21414.d
// https://issues.dlang.org/show_bug.cgi?id=21414

struct State
{
    string s;

    immutable this(string s)
    {
        this.s = s;
    }
}

immutable rootState = new immutable State("b");