16 lines
412 B
Rust
16 lines
412 B
Rust
|
|
// edition:2018
|
||
|
|
|
||
|
|
async fn print_dur() {}
|
||
|
|
|
||
|
|
fn main() {
|
||
|
|
async { let (); }.await;
|
||
|
|
//~^ ERROR `await` is only allowed inside `async` functions and blocks
|
||
|
|
async {
|
||
|
|
//~^ ERROR `await` is only allowed inside `async` functions and blocks
|
||
|
|
let task1 = print_dur().await;
|
||
|
|
}.await;
|
||
|
|
(|_| 2333).await;
|
||
|
|
//~^ ERROR `await` is only allowed inside `async` functions and blocks
|
||
|
|
//~^^ ERROR
|
||
|
|
}
|