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

14 lines
175 B
D

// https://issues.dlang.org/show_bug.cgi?id=13953
struct S
{
string[string] aa;
alias aa this;
}
void main()
{
S s;
s["foo"] = "bar";
s.remove("foo");
}