Sign in
android
/
platform
/
external
/
rust
/
crates
/
async-stream
/
647493e10df459f2e4cc4cab77918fcba6a887dc
/
.
/
tests
/
ui
/
yield_in_async.rs
blob: 24e733047bfb583e4575f85911935282f43741f7 [
file
] [
log
] [
blame
]
use
async_stream
::
stream
;
fn
main
()
{
stream
!
{
let
f
=
async
{
yield
123
;
};
let
v
=
f
.
await
;
};
}