summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-3026.rs
blob: 4619a3fe78718c8e5e099fe0c0785579d93a183a (plain)
1
2
3
4
5
6
7
8
9
10
11
// 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);
}