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