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

16 lines
660 B
Plaintext
Raw Normal View History

error[E0502]: cannot borrow `*block.current` as immutable because it is also borrowed as mutable
2018-12-25 09:56:47 -06:00
--> $DIR/borrowed-referent-issue-38899.rs:14: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);
| - mutable borrow later used here
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0502`.