rust/tests/ui/coroutine/gen_fn.rs
2024-11-22 11:12:15 -08:00

9 lines
261 B
Rust

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