]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/issue-68523.rs
Rollup merge of #100396 - chenyukang:fix-100394, r=petrochenkov
[rust.git] / src / test / ui / async-await / issue-68523.rs
1 // edition:2018
2
3 async fn main() -> Result<i32, ()> {
4 //~^ ERROR `main` function is not allowed to be `async`
5     Ok(1)
6 }