summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-loan-rcvr.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-loan-rcvr.stderr')
-rw-r--r--src/test/ui/borrowck/borrowck-loan-rcvr.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/ui/borrowck/borrowck-loan-rcvr.stderr b/src/test/ui/borrowck/borrowck-loan-rcvr.stderr
new file mode 100644
index 000000000..1d6bd4e2e
--- /dev/null
+++ b/src/test/ui/borrowck/borrowck-loan-rcvr.stderr
@@ -0,0 +1,27 @@
+error[E0502]: cannot borrow `p` as mutable because it is also borrowed as immutable
+ --> $DIR/borrowck-loan-rcvr.rs:23:14
+ |
+LL | p.blockm(|| {
+ | - ------ ^^ mutable borrow occurs here
+ | | |
+ | _____| immutable borrow later used by call
+ | |
+LL | | p.x = 10;
+ | | --- second borrow occurs due to use of `p` in closure
+LL | | })
+ | |______- immutable borrow occurs here
+
+error[E0502]: cannot borrow `p` as immutable because it is also borrowed as mutable
+ --> $DIR/borrowck-loan-rcvr.rs:34:5
+ |
+LL | let l = &mut p;
+ | ------ mutable borrow occurs here
+LL | p.impurem();
+ | ^^^^^^^^^^^ immutable borrow occurs here
+LL |
+LL | l.x += 1;
+ | -------- mutable borrow later used here
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0502`.