mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 06:59:48 +00:00
12 lines
366 B
Plaintext
12 lines
366 B
Plaintext
error: expected one of `async`, `extern`, `fn`, or `unsafe`, found keyword `pub`
|
|
--> $DIR/issue-76437-const.rs:4:11
|
|
|
|
|
LL | const pub fn t() {}
|
|
| ------^^^
|
|
| | |
|
|
| | expected one of `async`, `extern`, `fn`, or `unsafe`
|
|
| help: visibility `pub` must come before `const`: `pub const`
|
|
|
|
error: aborting due to previous error
|
|
|