]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/issues/issue-87217-keyword-order/wrong-async.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / parser / issues / issue-87217-keyword-order / wrong-async.stderr
1 error: expected one of `extern` or `fn`, found keyword `async`
2 --> $DIR/wrong-async.rs:9:8
3 |
4 LL | unsafe async fn test() {}
5 | -------^^^^^
6 | | |
7 | | expected one of `extern` or `fn`
8 | help: `async` must come before `unsafe`: `async unsafe`
9 |
10 = note: keyword order for functions declaration is `pub`, `default`, `const`, `async`, `unsafe`, `extern`
11
12 error: aborting due to previous error
13