]> git.proxmox.com Git - rustc.git/blob - src/test/ui/moves/move-in-guard-2.stderr
New upstream version 1.61.0+dfsg1
[rustc.git] / src / test / ui / moves / move-in-guard-2.stderr
1 error[E0382]: use of moved value: `x`
2 --> $DIR/move-in-guard-2.rs:8:24
3 |
4 LL | let x: Box<_> = Box::new(1);
5 | - move occurs because `x` has type `Box<i32>`, which does not implement the `Copy` trait
6 ...
7 LL | (_, 2) if take(x) => (),
8 | ^ value used here after move
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0382`.