blob: 05dc46c3cc096356d7ab461dfd957baf5f2f436a (
plain)
| 1
2
3
4
5
6
7
8
9
10
 | //@ 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);
}
 |