about summary refs log tree commit diff
path: root/tests/ui/coroutine/gen_fn.rs
blob: 3228650f41524cb605c0c6e7ca5c3ddd2ae08eac (plain)
1
2
3
4
5
6
7
8
//@ 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() {}