]> git.proxmox.com Git - rustc.git/blame - tests/ui/coroutine/gen_fn.rs
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / coroutine / gen_fn.rs
CommitLineData
ed00b5ec
FG
1// revisions: e2024 none
2//[e2024] compile-flags: --edition 2024 -Zunstable-options
3
4gen fn foo() {}
5//[none]~^ ERROR: expected one of `#`, `async`, `const`, `default`, `extern`, `fn`, `pub`, `unsafe`, or `use`, found `gen`
4b012472 6//[e2024]~^^ ERROR: gen blocks are experimental
ed00b5ec
FG
7
8fn main() {}