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