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