Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-51719.rs
blob: 09241f982aa8a6685e7bf31e4b5acb5d615a87be [
file
] [
log
] [
blame
]
// edition:2018
//
// Tests that the .await syntax can't be used to make a generator
async
fn
foo
()
{}
fn
make_generator
()
{
let
_gen
=
||
foo
().
await
;
//~^ ERROR `await` is only allowed inside `async` functions and blocks
}
fn
main
()
{}