mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
12 lines
390 B
Plaintext
12 lines
390 B
Plaintext
error: expected one of `extern`, `fn`, or `unsafe`, found keyword `pub`
|
|
--> $DIR/issue-76437-const-async.rs:4:17
|
|
|
|
|
LL | const async pub fn t() {}
|
|
| ------------^^^
|
|
| | |
|
|
| | expected one of `extern`, `fn`, or `unsafe`
|
|
| help: visibility `pub` must come before `const async`: `pub const async`
|
|
|
|
error: aborting due to previous error
|
|
|