blob: 26449a17f7843d19fa79f0164f6995558953822d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|