2021-08-10 01:36:39 +02:00
|
|
|
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() {}
|
2021-08-10 02:00:25 +02:00
|
|
|
| ------^^^
|
|
|
|
| | |
|
|
|
|
| | expected one of `async`, `extern`, `fn`, or `unsafe`
|
2021-08-10 01:36:39 +02:00
|
|
|
| help: visibility `pub` must come before `const`: `pub const`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|