https://issues.dlang.org/show_bug.cgi?id=11763
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |ice, ice-on-valid-code, | |industry CC| |[email protected] --- Comment #1 from [email protected] --- Another test case: --------------------- alias CountsList = HashMap!(string, int); void main() { CountsList[string] countsByOnet; countsByOnet["1"] = CountsList(128); } struct HashMap(K, V) { this(this) {} this(size_t) {} ~this() {} } --
