rust/tests/ui/coroutine/async_gen_fn.rs
2023-12-08 17:23:26 +00:00

14 lines
189 B
Rust

// edition: 2024
// compile-flags: -Zunstable-options
// check-pass
#![feature(gen_blocks, async_iterator)]
async fn bar() {}
async gen fn foo() {
yield bar().await;
}
fn main() {}