The following causes a crash. Probably not the best idea to call it. Not finding a merge for associative arrays, my hope was adding them would do it.
import std.stdio;
void main() {
double[string] a = [ "foo" : 22.2 ];
double[string] b = [ "bar" : 22.2 ];
writeln(a+b);
}