mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-03 15:00:03 +00:00
9 lines
161 B
Rust
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
|
|
}
|