rust/tests/ui/coroutine/async_gen_fn.rs
2025-11-27 11:19:00 -05:00

12 lines
425 B
Rust

//@ revisions: e2015 mid e2024
//@[e2015] edition: 2015
//@[mid] edition: 2018..2024
//@[e2024] edition: 2024
async gen fn foo() {}
//[e2015]~^ ERROR: `async fn` is not permitted in Rust 2015
//[e2015]~| ERROR: expected one of `extern`, `fn`, `safe`, or `unsafe`, found `gen`
//[mid]~^^^ ERROR: expected one of `extern`, `fn`, `safe`, or `unsafe`, found `gen`
//[e2024]~^^^^ ERROR: gen blocks are experimental
fn main() {}