DEBSOURCES
Skip Quicknav
sources / rust-async-stream / 0.3.4-2 / tests / ui / yield_in_nested_fn.rs
123456789
use async_stream::stream; fn main() { stream! { fn foo() { yield "hello"; } }; }