]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/error-codes/E0502.stderr
New upstream version 1.57.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0502.stderr
index e578cffe56463d6ea1b3adc4ebeda46a737ba80b..94cc89754db5fc615509c571e3794e7aab64672c 100644 (file)
@@ -1,12 +1,13 @@
-error[E0502]: cannot borrow `*a` as mutable because `a` is also borrowed as immutable
-  --> $DIR/E0502.rs:14:9
+error[E0502]: cannot borrow `*a` as mutable because it is also borrowed as immutable
+  --> $DIR/E0502.rs:4:5
    |
-13 |     let ref y = a;
+LL |     let ref y = a;
    |         ----- immutable borrow occurs here
-14 |     bar(a); //~ ERROR E0502
-   |         ^ mutable borrow occurs here
-15 | }
-   | - immutable borrow ends here
+LL |     bar(a);
+   |     ^^^^^^ mutable borrow occurs here
+LL |     y.use_ref();
+   |     ----------- immutable borrow later used here
 
 error: aborting due to previous error
 
+For more information about this error, try `rustc --explain E0502`.