blob: b660d8a206ce5d0af03e5f9be1816f6ed8a545a6 [file] [log] [blame]
//@ edition:2018
async fn print_dur() {}
fn main() {
(async || 2333)().await;
//~^ ERROR `await` is only allowed inside `async` functions and blocks
}