]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/nll/issue-53040.stderr
New upstream version 1.46.0~beta.2+dfsg1
[rustc.git] / src / test / ui / nll / issue-53040.stderr
index 7cba32c67432cc4cde4576a9614bab1a9cf37da2..87ffe9b1abf456d26abc45aaa18a0902cf8bf2b1 100644 (file)
@@ -1,9 +1,13 @@
 error: captured variable cannot escape `FnMut` closure body
   --> $DIR/issue-53040.rs:3:8
    |
+LL |     let mut v: Vec<()> = Vec::new();
+   |         ----- variable defined here
 LL |     || &mut v;
-   |      - ^^^^^^ returns a reference to a captured variable which escapes the closure body
-   |      |
+   |      - ^^^^^-
+   |      | |    |
+   |      | |    variable captured here
+   |      | returns a reference to a captured variable which escapes the closure body
    |      inferred to be a `FnMut` closure
    |
    = note: `FnMut` closures only have access to their captured variables while they are executing...