summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-87217-keyword-order/wrong-const.stderr
blob: 5958f0c7d2ddd0581d891088fd674b96e6766eb1 (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/wrong-const.rs:9:8
   |
LL | unsafe const fn test() {}
   | -------^^^^^
   | |      |
   | |      expected one of `extern` or `fn`
   | help: `const` must come before `unsafe`: `const unsafe`
   |
   = note: keyword order for functions declaration is `pub`, `default`, `const`, `async`, `unsafe`, `extern`

error: aborting due to 1 previous error