]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-escaping-closure-error-1.stderr
Auto merge of #101768 - sunfishcode:sunfishcode/wasi-stdio-lock-asfd, r=joshtriplett
[rust.git] / src / test / ui / borrowck / borrowck-escaping-closure-error-1.stderr
index 161e4610d614fa2f2ec138bbdc6bfabe7033472d..acf6b37b773964db95f2901f4094befe71a5b081 100644 (file)
@@ -14,7 +14,7 @@ LL |     spawn(|| books.push(4));
 help: to force the closure to take ownership of `books` (and any other referenced variables), use the `move` keyword
    |
 LL |     spawn(move || books.push(4));
-   |           ^^^^
+   |           ++++
 
 error: aborting due to previous error