blob: 05dc46c3cc096356d7ab461dfd957baf5f2f436a [file] [log] [blame]
//@ run-pass
use std::collections::HashMap;
pub fn main() {
let x: Box<_>;
let mut buggy_map: HashMap<usize, &usize> = HashMap::new();
x = Box::new(1);
buggy_map.insert(42, &*x);
}