2023-10-05 11:30:55 +00:00
|
|
|
//@ revisions: e2024 none
|
|
|
|
//@[e2024] compile-flags: --edition 2024 -Zunstable-options
|
2023-10-23 11:34:27 +00:00
|
|
|
#![cfg_attr(e2024, feature(gen_blocks))]
|
2024-04-11 13:15:34 +00:00
|
|
|
#![feature(stmt_expr_attributes)]
|
2023-10-05 11:30:55 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = gen {};
|
|
|
|
//[none]~^ ERROR: cannot find
|
2023-10-20 21:26:57 +00:00
|
|
|
//[e2024]~^^ ERROR: type annotations needed
|
2023-10-05 11:30:55 +00:00
|
|
|
let y = gen { yield 42 };
|
|
|
|
//[none]~^ ERROR: found reserved keyword `yield`
|
|
|
|
//[none]~| ERROR: cannot find
|
|
|
|
gen {};
|
|
|
|
//[none]~^ ERROR: cannot find
|
2023-10-23 14:00:34 +00:00
|
|
|
|
|
|
|
let _ = || yield true; //[none]~ ERROR yield syntax is experimental
|
2023-10-23 14:29:00 +00:00
|
|
|
//~^ ERROR yield syntax is experimental
|
2024-04-11 13:15:34 +00:00
|
|
|
//~^^ ERROR `yield` can only be used in
|
|
|
|
|
|
|
|
let _ = #[coroutine] || yield true; //[none]~ ERROR yield syntax is experimental
|
|
|
|
//~^ ERROR `#[coroutines]` attribute is an experimental feature
|
|
|
|
//~^^ ERROR yield syntax is experimental
|
|
|
|
|
|
|
|
let _ = #[coroutine] || {};
|
|
|
|
//~^ ERROR `#[coroutines]` attribute is an experimental feature
|
2023-10-05 11:30:55 +00:00
|
|
|
}
|