blob: 2f50d5db9acf677d8f2d3033f39dc598627ec13e (
plain)
1
2
3
4
5
6
7
8
|
//@ 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() {}
|