]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-11873.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-11873.stderr
index 63bb4e7bd042b7f175725a4baeb31e3ca3f46fc5..4475bdf147402eb4fe6a3f87496a0608bfccdf82 100644 (file)
@@ -1,10 +1,15 @@
 error[E0505]: cannot move out of `v` because it is borrowed
-  --> $DIR/issue-11873.rs:4:9
+  --> $DIR/issue-11873.rs:4:14
    |
 LL |     let mut f = || v.push(2);
-   |                 -- borrow of `v` occurs here
+   |                 -- - borrow occurs due to use in closure
+   |                 |
+   |                 borrow of `v` occurs here
 LL |     let _w = v;
-   |         ^^ move out of `v` occurs here
+   |              ^ move out of `v` occurs here
+LL | 
+LL |     f();
+   |     - borrow later used here
 
 error: aborting due to previous error