summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/borrowck-lend-flow.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/borrowck/borrowck-lend-flow.stderr')
-rw-r--r--tests/ui/borrowck/borrowck-lend-flow.stderr13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/borrowck/borrowck-lend-flow.stderr b/tests/ui/borrowck/borrowck-lend-flow.stderr
new file mode 100644
index 000000000..40c14f54c
--- /dev/null
+++ b/tests/ui/borrowck/borrowck-lend-flow.stderr
@@ -0,0 +1,13 @@
+error[E0502]: cannot borrow `*v` as mutable because it is also borrowed as immutable
+ --> $DIR/borrowck-lend-flow.rs:24:16
+ |
+LL | let _w = &v;
+ | -- immutable borrow occurs here
+LL | borrow_mut(&mut *v);
+ | ^^^^^^^ mutable borrow occurs here
+LL | _w.use_ref();
+ | ------------ immutable borrow later used here
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0502`.