mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00
10 lines
312 B
Rust
10 lines
312 B
Rust
//@ edition: 2024
|
|
#![feature(stmt_expr_attributes)]
|
|
|
|
fn main() {
|
|
yield (); //~ ERROR yield syntax is experimental
|
|
//~^ ERROR yield syntax is experimental
|
|
//~^^ ERROR `yield` can only be used in `#[coroutine]` closures, or `gen` blocks
|
|
//~^^^ ERROR yield expression outside of coroutine literal
|
|
}
|