2019-08-05 23:14:41 +00:00
|
|
|
error[E0382]: use of moved value: `x.1`
|
2020-02-02 06:05:53 +00:00
|
|
|
--> $DIR/no-move-across-await-tuple.rs:8:5
|
2019-08-05 23:14:41 +00:00
|
|
|
|
|
|
|
|
LL | drop(x.1);
|
|
|
|
| --- value moved here
|
|
|
|
LL | nothing().await;
|
|
|
|
LL | x.1
|
|
|
|
| ^^^ value used here after move
|
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= note: move occurs because `x.1` has type `Vec<usize>`, which does not implement the `Copy` trait
|
2019-08-05 23:14:41 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-08-05 23:14:41 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|