summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-87217-keyword-order/wrong-const.stderr
blob: 0d2bc3472965f6c576a8764c3e821e1b016057ca (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 previous error