]> git.lizzy.rs Git - rust.git/blob - src/test/ui/liveness/liveness-use-after-move.stderr
Rollup merge of #95376 - WaffleLapkin:drain_keep_rest, r=dtolnay
[rust.git] / src / test / ui / liveness / liveness-use-after-move.stderr
1 error[E0382]: borrow of moved value: `x`
2   --> $DIR/liveness-use-after-move.rs:6:20
3    |
4 LL |     let x: Box<_> = 5.into();
5    |         - move occurs because `x` has type `Box<i32>`, which does not implement the `Copy` trait
6 LL |     let y = x;
7    |             - value moved here
8 LL |
9 LL |     println!("{}", *x);
10    |                    ^^ value borrowed here after move
11    |
12    = note: this error originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0382`.