summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/issues/issue-87217-keyword-order/const-async-const.stderr
blob: 977c6ebfef352bc6999849e679297a0c0ba89762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error: expected one of `extern`, `fn`, or `unsafe`, found keyword `const`
  --> $DIR/const-async-const.rs:5:13
   |
LL | const async const fn test() {}
   |             ^^^^^
   |             |
   |             expected one of `extern`, `fn`, or `unsafe`
   |             help: `const` already used earlier, remove this one
   |
note: `const` first seen here
  --> $DIR/const-async-const.rs:5:1
   |
LL | const async const fn test() {}
   | ^^^^^

error: aborting due to previous error