blob: e8a201cfb1c8c79104d1d61984939c6108c0d40b [file] [log] [blame]
// 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");