]> git.lizzy.rs Git - rust.git/blob - tests/ui/closures/issue-10398.stderr
Merge commit '1d8491b120223272b13451fc81265aa64f7f4d5b' into sync-from-rustfmt
[rust.git] / tests / ui / closures / issue-10398.stderr
1 error[E0382]: use of moved value: `x`
2   --> $DIR/issue-10398.rs:5:14
3    |
4 LL |         let _a = x;
5    |                  - value moved here
6 LL |         drop(x);
7    |              ^ value used here after move
8    |
9    = note: move occurs because `x` has type `Box<i32>`, which does not implement the `Copy` trait
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0382`.