summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-87217-keyword-order/wrong-async.stderr
blob: 74989502e7f5d0e7abecf1e98bcba0143653756a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error: expected one of `extern` or `fn`, found keyword `async`
  --> $DIR/wrong-async.rs:9:8
   |
LL | unsafe async fn test() {}
   | -------^^^^^
   | |      |
   | |      expected one of `extern` or `fn`
   | help: `async` must come before `unsafe`: `async unsafe`
   |
   = note: keyword order for functions declaration is `pub`, `default`, `const`, `async`, `unsafe`, `extern`

error: aborting due to 1 previous error