DEBSOURCES
Skip Quicknav
sources / rust-async-stream / 0.3.4-2 / tests / ui / yield_bad_expr_in_macro.rs
1234567891011
use async_stream::stream; fn main() { async fn work() {} stream! { tokio::select! { _ = work() => yield fn f() {}, } }; }