2024-05-23 10:01:05 -03:00
|
|
|
error: expected one of `async`, `extern`, `fn`, `safe`, or `unsafe`, found keyword `pub`
|
2020-09-07 22:27:00 +08:00
|
|
|
--> $DIR/issue-76437-const.rs:4:11
|
|
|
|
|
|
|
|
|
LL | const pub fn t() {}
|
|
|
|
| ------^^^
|
|
|
|
| | |
|
2024-05-23 10:01:05 -03:00
|
|
|
| | expected one of `async`, `extern`, `fn`, `safe`, or `unsafe`
|
2020-09-07 22:27:00 +08:00
|
|
|
| help: visibility `pub` must come before `const`: `pub const`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-09-07 22:27:00 +08:00
|
|
|
|