Especially in tests it can be extremely helpful to quickly initialize a map. Right now, you have to create an empty map and call insert a couple of times.
fn main() {
let vec = [1, 2, 3, 4];
print!("{:?}", vec);
let map = {"foo": 0, "bar": 1};
// ^^^^^^^^^^^
// does not work
print!("{:?}", map);
}
See example at http://is.gd/P0yeNQ