blob: dfdf078e303519b56b49323243f76dc93f64ea89 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0752]: `main` function is not allowed to be `async`
--> $DIR/issue-68523.rs:3:1
|
LL | async fn main() -> Result<i32, ()> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `main` function is not allowed to be `async`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0752`.
|