2023-12-07 11:39:02 -06:00
|
|
|
//@ revisions: e2024 none
|
|
|
|
//@[e2024] compile-flags: --edition 2024 -Zunstable-options
|
2023-11-29 18:59:06 -06:00
|
|
|
|
2023-12-07 11:39:02 -06:00
|
|
|
async gen fn foo() {}
|
|
|
|
//[none]~^ ERROR: `async fn` is not permitted in Rust 2015
|
2024-05-23 08:01:05 -05:00
|
|
|
//[none]~| ERROR: expected one of `extern`, `fn`, `safe`, or `unsafe`, found `gen`
|
2023-12-07 11:39:02 -06:00
|
|
|
//[e2024]~^^^ ERROR: gen blocks are experimental
|
2023-11-29 18:59:06 -06:00
|
|
|
|
|
|
|
fn main() {}
|