rust/src/test/ui/nll/borrowed-referent-issue-38899.stderr

16 lines
662 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:24:21
|
2018-02-22 18:42:32 -06:00
LL | let x = &mut block;
| ---------- mutable borrow occurs here
2018-02-24 17:01:39 -06:00
LL | println!("{}", x.current);
2018-02-22 18:42:32 -06:00
LL | let p: &'a u8 = &*block.current;
| ^^^^^^^^^^^^^^^ immutable borrow occurs here
LL | //~^ ERROR cannot borrow `*block.current` as immutable because it is also borrowed as mutable
LL | drop(x);
| - borrow later used here
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0502"