// 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");
// 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");