2020-01-30 12:02:06 +00:00
|
|
|
error: expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
|
2020-02-02 06:05:53 +00:00
|
|
|
--> $DIR/no-async-const.rs:4:11
|
2019-06-25 00:48:21 +00:00
|
|
|
|
|
|
|
|
LL | pub async const fn x() {}
|
2021-08-02 09:10:19 +00:00
|
|
|
| ------^^^^^
|
|
|
|
| | |
|
|
|
|
| | expected one of `extern`, `fn`, or `unsafe`
|
|
|
|
| help: `const` must come before `async`: `const async`
|
|
|
|
|
|
2022-05-02 09:14:43 +00:00
|
|
|
= note: keyword order for functions declaration is `pub`, `default`, `const`, `async`, `unsafe`, `extern`
|
2019-06-25 00:48:21 +00:00
|
|
|
|
2023-10-27 13:22:10 +00:00
|
|
|
error: functions cannot be both `const` and `async`
|
|
|
|
--> $DIR/no-async-const.rs:4:5
|
|
|
|
|
|
|
|
|
LL | pub async const fn x() {}
|
|
|
|
| ----^^^^^-^^^^^----------
|
|
|
|
| | |
|
|
|
|
| | `const` because of this
|
|
|
|
| `async` because of this
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2019-06-25 00:48:21 +00:00
|
|
|
|