]> git.proxmox.com Git - rustc.git/blob - src/test/ui/async-await/no-async-const.stderr
New upstream version 1.65.0+dfsg1
[rustc.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 `pub`, `default`, `const`, `async`, `unsafe`, `extern`
11
12 error: aborting due to previous error
13