]> 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 9193886b00969304ace56aef65d5353b99462b75..94cc89754db5fc615509c571e3794e7aab64672c 100644 (file)
@@ -1,13 +1,12 @@
-error[E0502]: cannot borrow `*a` as mutable because `a` is also borrowed as immutable
-  --> $DIR/E0502.rs:4:9
+error[E0502]: cannot borrow `*a` as mutable because it is also borrowed as immutable
+  --> $DIR/E0502.rs:4:5
    |
 LL |     let ref y = a;
    |         ----- immutable borrow occurs here
-LL |     bar(a); //~ ERROR E0502
-   |         ^ mutable borrow occurs here
+LL |     bar(a);
+   |     ^^^^^^ mutable borrow occurs here
 LL |     y.use_ref();
-LL | }
-   | - immutable borrow ends here
+   |     ----------- immutable borrow later used here
 
 error: aborting due to previous error