summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hashmap/hashmap-iter-value-lifetime.rs
blob: 260ea8c7ae15f860e871c5f665f724e665ed1e61 (plain)
1
2
3
4
5
6
7
8
9
10
fn main() {
    let mut my_stuff = std::collections::HashMap::new();
    my_stuff.insert(0, 42);

    let (_, thing) = my_stuff.iter().next().unwrap();

    my_stuff.clear(); //~ ERROR cannot borrow

    println!("{}", *thing);
}