"H. S. Teoh" <[email protected]> wrote in message news:[email protected]... > Is this a bug? >
Nope. > int[string] aa, bb; aa == bb == null > bb = aa; same > aa["abc"] = 123; A new AA is created. > assert(bb["abc"] == 123); // assertion fails > B is still null
