]> git.lizzy.rs Git - rust.git/blob - src/test/ui/moves/move-in-guard-2.nll.stderr
Rollup merge of #57132 - daxpedda:master, r=steveklabnik
[rust.git] / src / test / ui / moves / move-in-guard-2.nll.stderr
1 error[E0382]: use of moved value: `x`
2   --> $DIR/move-in-guard-2.rs:10:24
3    |
4 LL |         (_, 2) if take(x) => (), //~ ERROR use of moved value: `x`
5    |                        ^ value moved here, in previous iteration of loop
6    |
7    = note: move occurs because `x` has type `std::boxed::Box<i32>`, which does not implement the `Copy` trait
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0382`.