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

13 lines
502 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
|
22 | let x = &mut block;
| ---------- mutable borrow occurs here
23 | println!("{}", x.current);
24 | let p: &'a u8 = &*block.current;
| ^^^^^^^^^^^^^^^ immutable borrow occurs 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"