rust/tests/ui/parser/issues/issue-87694-misplaced-pub.stderr
Esteban Küber 855444ec54 mv tests
2023-10-24 21:27:05 +00:00

12 lines
356 B
Plaintext

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