rust/tests/ui/nll/borrowed-referent-issue-38899.stderr

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

16 lines
564 B
Plaintext
Raw Normal View History

error[E0502]: cannot borrow `*block.current` as immutable because it is also borrowed as mutable
--> $DIR/borrowed-referent-issue-38899.rs:11:21
|
2018-02-23 00:42:32 +00:00
LL | let x = &mut block;
| ---------- mutable borrow occurs here
2018-02-24 23:01:39 +00:00
LL | println!("{}", x.current);
2018-02-23 00:42:32 +00:00
LL | let p: &'a u8 = &*block.current;
| ^^^^^^^^^^^^^^^ immutable borrow occurs here
2019-03-09 12:03:44 +00:00
LL |
LL | drop(x);
| - mutable borrow later used here
error: aborting due to 1 previous error
2018-03-03 14:59:40 +00:00
For more information about this error, try `rustc --explain E0502`.