]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-27282-move-ref-mut-into-guard.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / issues / issue-27282-move-ref-mut-into-guard.stderr
1 error[E0507]: cannot move out of `foo` in pattern guard
2   --> $DIR/issue-27282-move-ref-mut-into-guard.rs:14:19
3    |
4 LL |             if { (|| { let bar = foo; bar.take() })(); false } => {},
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
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0507`.