mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
10 lines
184 B
Rust
10 lines
184 B
Rust
//@ edition:2021
|
|
|
|
fn main() {
|
|
async {
|
|
use std::ops::Add;
|
|
let _ = 1.add(3);
|
|
}.await
|
|
//~^ ERROR `await` is only allowed inside `async` functions and blocks
|
|
}
|