Sign in
android
/
platform
/
external
/
rust
/
crates
/
async-stream
/
c9037cb835f150eedf7e63a427890a5099bc95ad
/
.
/
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
;
};
}