]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/no-async-const.stderr
Merge commit '4a053f206fd6799a25823c307f7d7f9d897be118' into sync-rustfmt-subtree
[rust.git] / src / test / ui / async-await / no-async-const.stderr
1 error: expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
2   --> $DIR/no-async-const.rs:4:11
3    |
4 LL | pub async const fn x() {}
5    |     ------^^^^^
6    |     |     |
7    |     |     expected one of `extern`, `fn`, or `unsafe`
8    |     help: `const` must come before `async`: `const async`
9    |
10    = note: keyword order for functions declaration is `default`, `pub`, `const`, `async`, `unsafe`, `extern`
11
12 error: aborting due to previous error
13