rust/src/test/ui/hashmap-lifetimes.nll.stderr

14 lines
489 B
Plaintext
Raw Normal View History

error[E0502]: cannot borrow `my_stuff` as mutable because it is also borrowed as immutable
2018-12-25 09:56:47 -06:00
--> $DIR/hashmap-lifetimes.rs:6:5
|
LL | let mut it = my_stuff.iter();
| -------- immutable borrow occurs here
2019-03-11 15:18:35 -05:00
LL | my_stuff.insert(1, 43);
| ^^^^^^^^^^^^^^^^^^^^^^ mutable borrow occurs here
LL | it;
| -- immutable borrow later used here
error: aborting due to previous error
For more information about this error, try `rustc --explain E0502`.