mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +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
|
|
}
|