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