blob: 4619a3fe78718c8e5e099fe0c0785579d93a183a [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
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);
}