2018-08-15 16:33:14 -05:00
|
|
|
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
|
2018-08-15 16:33:14 -05:00
|
|
|
|
|
|
|
|
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);
|
2018-08-15 16:33:14 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ mutable borrow occurs here
|
|
|
|
LL | it;
|
2018-09-29 05:47:47 -05:00
|
|
|
| -- immutable borrow later used here
|
2018-08-15 16:33:14 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0502`.
|