summaryrefslogtreecommitdiffstats
path: root/src/test/ui/closures/issue-10398.stderr
blob: 8d9faf324e82a36d83f15b44b9caf0446f414de0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0382]: use of moved value: `x`
  --> $DIR/issue-10398.rs:7:14
   |
LL |         let _a = x;
   |                  - value moved here
LL |         drop(x);
   |              ^ value used here after move
   |
   = note: move occurs because `x` has type `Box<i32>`, which does not implement the `Copy` trait

error: aborting due to previous error

For more information about this error, try `rustc --explain E0382`.