]> git.lizzy.rs Git - rust.git/blob - src/test/ui/moves/move-in-guard-1.stderr
Auto merge of #73660 - flip1995:clippyup, r=nikomatsakis
[rust.git] / src / test / ui / moves / move-in-guard-1.stderr
1 error[E0382]: use of moved value: `x`
2   --> $DIR/move-in-guard-1.rs:10:24
3    |
4 LL |     let x: Box<_> = box 1;
5    |         - move occurs because `x` has type `std::boxed::Box<i32>`, which does not implement the `Copy` trait
6 ...
7 LL |         (1, _) if take(x) => (),
8    |                        - value moved here
9 LL |         (_, 2) if take(x) => (),
10    |                        ^ value used here after move
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0382`.