How am I supposed to insert a struct with immutable members into an assoc. array?

Reduced example:
----
struct A {
    immutable string name;
}

A[string] as;
as["a"] = A("a"); // Does not work
----

Reply via email to