blob: 63502ffceaeb6f95afc0e6fcd562482da8690dc4 [file] [log] [blame]
// 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";
}