]> git.lizzy.rs Git - rust.git/blob - tests/ui/moves/move-in-guard-2.stderr
Rollup merge of #107576 - P1n3appl3:master, r=tmandry
[rust.git] / tests / 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 note: consider changing this parameter type in function `take` to borrow instead if owning the value isn't necessary
11   --> $DIR/move-in-guard-2.rs:13:15
12    |
13 LL | fn take<T>(_: T) -> bool { false }
14    |    ----       ^ this parameter takes ownership of the value
15    |    |
16    |    in this function
17 help: consider cloning the value if the performance cost is acceptable
18    |
19 LL |         (_, 2) if take(x.clone()) => (),
20    |                         ++++++++
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0382`.