Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
issue-70594.rs
blob: 422248c9eba15c0cfcf8cce36df5c94e27073770 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
async
fn
fun
()
{
[
1
;
().
await
];
//~^ error: `await` is only allowed inside `async` functions and blocks
}
fn
main
()
{}