An LLVM failure results from compiling this program: ``` use std; import std::map::hashmap; import std::map; fn main() { let buggy_map :hashmap<uint, &uint> = hashmap::<uint, &uint>(uint::hash, uint::eq); let x = ~1; buggy_map.insert(42, x); } ```