rust/tests/ui/hashmap/hashmap-iter-value-lifetime.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
230 B
Rust
Raw Normal View History

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