summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-27282-move-match-input-into-guard.stderr
blob: 9be1a9279992b813037fe28e38d492df4694d09f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0382]: use of moved value: `b`
  --> $DIR/issue-27282-move-match-input-into-guard.rs:12:5
   |
LL |     let b = &mut true;
   |         - move occurs because `b` has type `&mut bool`, which does not implement the `Copy` trait
LL |     match b {
   |     ^^^^^^^ value used here after move
...
LL |         _ if { (|| { let bar = b; *bar = false; })();
   |                 --             - variable moved due to use in closure
   |                 |
   |                 value moved into closure here

error: aborting due to previous error

For more information about this error, try `rustc --explain E0382`.