Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-51751.rs
blob: 7c405e3653b3edc7905a315264539b6a3070f7a9 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
async
fn
inc
(
limit
:
i64
)
->
i64
{
limit
+
1
}
fn
main
()
{
let
result
=
inc
(
10000
);
let
finished
=
result
.
await
;
//~^ ERROR `await` is only allowed inside `async` functions and blocks
}