xxxxxxxxxx
import std.stdio;
immutable string[string] dict;
immutable Test test;
static this()
{
dict = ["Test.Type.One": "One!", "Test.Type.Two": "It's Two...", "Test.Type.Three": "And... Three!"];
test.dict = dict;
}
struct Test
{
immutable string[string] dict;
}
void main()
{
dict.writeln;
}