summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issue-87694-misplaced-pub.stderr
blob: 94c6a29efcb3b7c769512ab5cd07024593187911 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: expected one of `async`, `extern`, `fn`, or `unsafe`, found keyword `pub`
  --> $DIR/issue-87694-misplaced-pub.rs:1:7
   |
LL | const pub fn test() {}
   | ------^^^
   | |     |
   | |     expected one of `async`, `extern`, `fn`, or `unsafe`
   | help: visibility `pub` must come before `const`: `pub const`

error: aborting due to previous error