2020-01-30 13:02:06 +01:00
|
|
|
error: expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
|
2020-02-02 01:05:53 -05:00
|
|
|
--> $DIR/no-async-const.rs:4:11
|
2019-06-24 17:48:21 -07:00
|
|
|
|
|
|
|
|
LL | pub async const fn x() {}
|
2021-08-02 11:10:19 +02:00
|
|
|
| ------^^^^^
|
|
|
|
| | |
|
|
|
|
| | expected one of `extern`, `fn`, or `unsafe`
|
|
|
|
| help: `const` must come before `async`: `const async`
|
|
|
|
|
|
2022-05-02 18:14:43 +09:00
|
|
|
= note: keyword order for functions declaration is `pub`, `default`, `const`, `async`, `unsafe`, `extern`
|
2019-06-24 17:48:21 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|