]> git.proxmox.com Git - rustc.git/blob - src/test/ui/parser/issue-87217-keyword-order/const-async-const.stderr
New upstream version 1.57.0+dfsg1
[rustc.git] / src / test / ui / parser / issue-87217-keyword-order / const-async-const.stderr
1 error: expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
2 --> $DIR/const-async-const.rs:6:13
3 |
4 LL | const async const fn test() {}
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