rust/tests/ui/coroutine/issue-64620-yield-array-element.rs
Oli Scherer aef0f4024a Error on using yield without also using #[coroutine] on the closure
And suggest adding the `#[coroutine]` to the closure
2024-04-24 08:05:29 +00:00

11 lines
223 B
Rust

// Regression test for #64620
#![feature(coroutines)]
pub fn crash(arr: [usize; 1]) {
yield arr[0]; //~ ERROR: yield expression outside of coroutine literal
//~^ ERROR: `yield` can only be used in
}
fn main() {}