import std.stdio;
void main(string[] args) { int[string] x; x["hello"] = 1; x["world"] = 2; writefln("%s", x); x = new int[string]; writefln("%s", x); // Should be empty. }
import std.stdio;
void main(string[] args) { int[string] x; x["hello"] = 1; x["world"] = 2; writefln("%s", x); x = new int[string]; writefln("%s", x); // Should be empty. }