summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/borrowed-referent-issue-38899.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/borrowed-referent-issue-38899.stderr')
-rw-r--r--src/test/ui/nll/borrowed-referent-issue-38899.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/nll/borrowed-referent-issue-38899.stderr b/src/test/ui/nll/borrowed-referent-issue-38899.stderr
new file mode 100644
index 000000000..16588cbcf
--- /dev/null
+++ b/src/test/ui/nll/borrowed-referent-issue-38899.stderr
@@ -0,0 +1,15 @@
+error[E0502]: cannot borrow `*block.current` as immutable because it is also borrowed as mutable
+ --> $DIR/borrowed-referent-issue-38899.rs:11:21
+ |
+LL | let x = &mut block;
+ | ---------- mutable borrow occurs here
+LL | println!("{}", x.current);
+LL | let p: &'a u8 = &*block.current;
+ | ^^^^^^^^^^^^^^^ immutable borrow occurs here
+LL |
+LL | drop(x);
+ | - mutable borrow later used here
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0502`.