https://issues.dlang.org/show_bug.cgi?id=13909
Peter Alexander <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |m --- Comment #1 from Peter Alexander <[email protected]> --- typeof(aa3) = immutable(string[string]) typeof(aa4) = immutable(string[const(string)]) You are swapping the order to (value, key) in your zip, so you are trying to create an associative array with const values (not keys), which isn't possible with assocArray. --
