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