(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.dg/
torture/
gdc131.d
// https://bugzilla.gdcproject.org/show_bug.cgi?id=131
// { dg-do run }
// { dg-skip-if "needs gcc/config.d" { ! d_runtime } }

struct S131
{
    this(string ) { }
    string opAssign(string v) { return v; }
}

void main()
{
    S131[string] s;
    s["foo"] = "bar";
}