Files
cli/vendor/async-stream/tests/ui/yield_in_nested_fn.rs

10 lines
118 B
Rust

use async_stream::stream;
fn main() {
stream! {
fn foo() {
yield "hello";
}
};
}