dmd/compiler/test/compilable/test21414.d
2022-07-09 18:53:07 +02:00

13 lines
193 B
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");