mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
13 lines
193 B
D
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");
|