]> git.proxmox.com Git - rustc.git/blame - src/test/ui/hashmap-iter-value-lifetime.nll.stderr
New upstream version 1.42.0+dfsg0+pve1
[rustc.git] / src / test / ui / hashmap-iter-value-lifetime.nll.stderr
CommitLineData
b7449926 1error[E0502]: cannot borrow `my_stuff` as mutable because it is also borrowed as immutable
0731742a 2 --> $DIR/hashmap-iter-value-lifetime.rs:7:5
b7449926
XL
3 |
4LL | let (_, thing) = my_stuff.iter().next().unwrap();
5 | -------- immutable borrow occurs here
6LL |
532ac7d7 7LL | my_stuff.clear();
48663c56 8 | ^^^^^^^^ mutable borrow occurs here
b7449926
XL
9LL |
10LL | println!("{}", *thing);
0bf4aa26 11 | ------ immutable borrow later used here
b7449926
XL
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0502`.