]> git.proxmox.com Git - rustc.git/blame - src/test/ui/borrowck/issue-27282-mutation-in-guard.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / borrowck / issue-27282-mutation-in-guard.stderr
CommitLineData
416331ca
XL
1error[E0507]: cannot move out of `foo` in pattern guard
2 --> $DIR/issue-27282-mutation-in-guard.rs:6:18
3 |
4LL | (|| { let bar = foo; bar.take() })();
5 | ^^ ---
6 | | |
1b1a35ee 7 | | move occurs because `foo` has type `&mut Option<&i32>`, which does not implement the `Copy` trait
416331ca
XL
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
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0507`.