]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/borrowck/borrowck-feature-nll-overrides-migrate.edition.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / borrowck / borrowck-feature-nll-overrides-migrate.edition.stderr
index 9059ef438d0f59deb2fc278ad5065aea5c2204c2..ebdacee7f65d8d330d60812c1ec32696762bb596 100644 (file)
@@ -1,8 +1,14 @@
-error[E0507]: cannot move out of borrowed content
-  --> $DIR/borrowck-feature-nll-overrides-migrate.rs:22:17
+error[E0507]: cannot move out of `foo` in pattern guard
+  --> $DIR/borrowck-feature-nll-overrides-migrate.rs:22:18
    |
 LL |                 (|| { let bar = foo; bar.take() })();
-   |                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot move out of borrowed content
+   |                  ^^             ---
+   |                  |              |
+   |                  |              move occurs because `foo` has type `&mut std::option::Option<&i32>`, which does not implement the `Copy` trait
+   |                  |              move occurs due to use in closure
+   |                  move out of `foo` occurs here
+   |
+   = note: variables bound in patterns cannot be moved from until after the end of the pattern guard
 
 error: aborting due to previous error