]> git.lizzy.rs Git - rust.git/blob - src/test/ui/borrowck/borrowck-migrate-to-nll.edition.stderr
Auto merge of #61136 - matthewjasper:cannot-move-errors, r=pnkfelix
[rust.git] / src / test / ui / borrowck / borrowck-migrate-to-nll.edition.stderr
1 warning[E0507]: cannot move out of `foo` in pattern guard
2   --> $DIR/borrowck-migrate-to-nll.rs:25:18
3    |
4 LL |                 (|| { let bar = foo; bar.take() })();
5    |                  ^^             ---
6    |                  |              |
7    |                  |              move occurs because `foo` has type `&mut std::option::Option<&i32>`, which does not implement the `Copy` trait
8    |                  |              move occurs due to use in closure
9    |                  move out of `foo` occurs here
10    |
11    = note: variables bound in patterns cannot be moved from until after the end of the pattern guard
12    = warning: this error has been downgraded to a warning for backwards compatibility with previous releases
13    = warning: this represents potential undefined behavior in your code and this warning will become a hard error in the future
14    = note: for more information, try `rustc --explain E0729`
15