(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test13953.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");
}