Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-51751.rs
blob: bc85a96cea99e90bdcdcab74ffd6b2cd2593d8a2 [
file
] [
log
] [
blame
]
// 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
}