rust/src/test/ui/hashmap-iter-value-lifetime.rs

11 lines
230 B
Rust
Raw Normal View History

fn main() {
let mut my_stuff = std::collections::HashMap::new();
2015-01-31 10:23:42 -06:00
my_stuff.insert(0, 42);
let (_, thing) = my_stuff.iter().next().unwrap();
my_stuff.clear(); //~ ERROR cannot borrow
println!("{}", *thing);
}