1 2 3 4 5 6 7 8
//@ edition:2018 async fn print_dur() {} fn main() { (async || 2333)().await; //~^ ERROR `await` is only allowed inside `async` functions and blocks }