]> git.lizzy.rs Git - rust.git/blob - src/test/ui/liveness/liveness-move-call-arg.stderr
Merge commit '9809f5d21990d9e24b3e9876ea7da756fd4e9def' into libgccjit-codegen
[rust.git] / src / test / ui / liveness / liveness-move-call-arg.stderr
1 error[E0382]: use of moved value: `x`
2   --> $DIR/liveness-move-call-arg.rs:9:14
3    |
4 LL |     let x: Box<isize> = box 25;
5    |         - move occurs because `x` has type `Box<isize>`, which does not implement the `Copy` trait
6 LL |     loop {
7 LL |         take(x);
8    |              ^ value moved here, in previous iteration of loop
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0382`.