mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
7077797f52
Co-authored-by: Michael Goulet <michael@errs.io>
9 lines
270 B
Rust
9 lines
270 B
Rust
//@ revisions: e2024 none
|
|
//@[e2024] edition: 2024
|
|
|
|
gen fn foo() {}
|
|
//[none]~^ ERROR: expected one of `#`, `async`, `const`, `default`, `extern`, `final`, `fn`, `pub`, `safe`, `unsafe`, or `use`, found `gen`
|
|
//[e2024]~^^ ERROR: gen blocks are experimental
|
|
|
|
fn main() {}
|