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

9 lines
286 B
Rust

// revisions: e2024 none
//[e2024] compile-flags: --edition 2024 -Zunstable-options
gen fn foo() {}
//[none]~^ ERROR: expected one of `#`, `async`, `const`, `default`, `extern`, `fn`, `pub`, `unsafe`, or `use`, found `gen`
//[e2024]~^^ ERROR: gen blocks are experimental
fn main() {}