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

error: aborting due to previous error