2019-08-05 18:14:41 -05:00
|
|
|
error[E0382]: use of moved value: `s.x`
|
2020-02-02 00:05:53 -06:00
|
|
|
--> $DIR/no-move-across-await-struct.rs:7:5
|
2019-08-05 18:14:41 -05:00
|
|
|
|
|
|
|
|
LL | needs_vec(s.x).await;
|
|
|
|
| --- value moved here
|
|
|
|
LL | s.x
|
|
|
|
| ^^^ value used here after move
|
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= note: move occurs because `s.x` has type `Vec<usize>`, which does not implement the `Copy` trait
|
2019-08-05 18:14:41 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|