Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-62009-2.rs
blob: b660d8a206ce5d0af03e5f9be1816f6ed8a545a6 [
file
] [
log
] [
blame
]
//@ edition:2018
async
fn
print_dur
()
{}
fn
main
()
{
(
async
||
2333
)().
await
;
//~^ ERROR `await` is only allowed inside `async` functions and blocks
}