//! The main purpose of this example is to have something minimal to `cargo expand` when I'm
//! debugging compiler errors in the macro.
usefor_streams::for_streams;#[tokio::main]
async fnmain(){let stream =futures::stream::iter(0..5);for_streams!{_in stream =>{}}}