mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
232 B
Rust
12 lines
232 B
Rust
//@ 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);
|
|
}
|