]> git.lizzy.rs Git - rust.git/blob - tests/ui/nll/issue-27282-move-ref-mut-into-guard.stderr
Link to the LLVM issue from a comment on `SpecOptionPartialEq`
[rust.git] / tests / ui / nll / 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:11:19
3    |
4 LL |             if { (|| { let bar = foo; bar.take() })(); false } => {},
5    |                   ^^             --- move occurs because `foo` has type `&mut Option<&i32>`, which does not implement the `Copy` trait
6    |                   |
7    |                   move out of `foo` occurs here
8    |
9    = note: variables bound in patterns cannot be moved from until after the end of the pattern guard
10
11 error[E0507]: cannot move out of `foo` in pattern guard
12   --> $DIR/issue-27282-move-ref-mut-into-guard.rs:19:34
13    |
14 LL |             if let Some(()) = { (|| { let bar = foo; bar.take() })(); None } => {},
15    |                                  ^^             --- move occurs because `foo` has type `&mut Option<&i32>`, which does not implement the `Copy` trait
16    |                                  |
17    |                                  move out of `foo` occurs here
18    |
19    = note: variables bound in patterns cannot be moved from until after the end of the pattern guard
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0507`.