rust/tests/ui/async-await/issues/issue-62009-2.rs
2024-12-13 00:04:56 +00:00

9 lines
161 B
Rust

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