2024-11-01 18:37:32 -03:00
|
|
|
error: expected one of `move`, `use`, `|`, or `||`, found `Move`
|
2024-09-01 22:27:43 -04:00
|
|
|
--> $DIR/async-move.rs:4:11
|
|
|
|
|
|
|
|
|
|
|
LL | async Move {}
|
2024-11-01 18:37:32 -03:00
|
|
|
| ^^^^ expected one of `move`, `use`, `|`, or `||`
|
2024-09-02 12:43:35 -04:00
|
|
|
|
|
|
|
|
|
help: write keyword `move` in lowercase
|
|
|
|
|
|
|
2024-07-09 22:30:26 +00:00
|
|
|
LL - async Move {}
|
|
|
|
|
LL + async move {}
|
|
|
|
|
|
|
2024-09-01 22:27:43 -04:00
|
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
|
|