]> git.proxmox.com Git - rustc.git/blob - tests/ui/async-await/issue-68523.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / 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 }