rust/tests/ui/async-await/issues/issue-62009-2.rs
2023-01-11 09:32:08 +00:00

11 lines
188 B
Rust

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