rust/tests/ui/borrowck/borrowck-lend-flow-loop.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
918 B
Plaintext
Raw Normal View History

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