]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/borrowck/borrowck-escaping-closure-error-2.stderr
New upstream version 1.26.0+dfsg1
[rustc.git] / src / test / ui / borrowck / borrowck-escaping-closure-error-2.stderr
index f8963c175c8ab10cf50c18e10ab84a6bd57c8a01..1343c0a1f5b71f64b7a9e51ab43f6a43ec3b33c1 100644 (file)
@@ -1,14 +1,15 @@
 error[E0373]: closure may outlive the current function, but it borrows `books`, which is owned by the current function
   --> $DIR/borrowck-escaping-closure-error-2.rs:21:14
    |
-21 |     Box::new(|| books.push(4))
+LL |     Box::new(|| books.push(4))
    |              ^^ ----- `books` is borrowed here
    |              |
    |              may outlive borrowed value `books`
 help: to force the closure to take ownership of `books` (and any other referenced variables), use the `move` keyword
    |
-21 |     Box::new(move || books.push(4))
+LL |     Box::new(move || books.push(4))
    |              ^^^^^^^
 
 error: aborting due to previous error
 
+For more information about this error, try `rustc --explain E0373`.