2018-08-08 07:28:26 -05:00
|
|
|
error[E0502]: cannot borrow `*v` as immutable because it is also borrowed as mutable
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/borrowck-lend-flow-loop.rs:29:16
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let mut x = &mut v;
|
|
|
|
| ------ mutable borrow occurs here
|
|
|
|
LL | for _ in 0..3 {
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | borrow(&*v);
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^ immutable borrow occurs here
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | }
|
2021-08-24 19:39:40 -05:00
|
|
|
LL | *x = Box::new(5);
|
2018-11-20 14:48:16 -06:00
|
|
|
| -- mutable borrow later used here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `*v` as immutable because it is also borrowed as mutable
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/borrowck-lend-flow-loop.rs:92:16
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | **x += 1;
|
2018-11-20 14:48:16 -06:00
|
|
|
| -------- mutable borrow later used here
|
2019-03-17 04:52:07 -05:00
|
|
|
LL | borrow(&*v);
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^ immutable borrow occurs here
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | if cond2 {
|
|
|
|
LL | x = &mut v; // OK
|
2018-08-08 07:28:26 -05:00
|
|
|
| ------ mutable borrow occurs here
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0502`.
|