rust/tests/ui/coroutine/async_gen_fn.rs
2023-12-04 11:23:07 -08:00

11 lines
272 B
Rust

// edition: 2024
// compile-flags: -Zunstable-options
#![feature(gen_blocks)]
// async generators are not yet supported, so this test makes sure they make some kind of reasonable
// error.
async gen fn foo() {}
//~^ `async gen` functions are not supported
fn main() {}