mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-03 15:09:09 +00:00
15 lines
340 B
Plaintext
15 lines
340 B
Plaintext
error: expected one of `move`, `use`, `{`, `|`, or `||`, found `Move`
|
|
--> $DIR/async-move.rs:4:11
|
|
|
|
|
LL | async Move {}
|
|
| ^^^^ expected one of `move`, `use`, `{`, `|`, or `||`
|
|
|
|
|
help: write keyword `move` in lowercase
|
|
|
|
|
LL - async Move {}
|
|
LL + async move {}
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|