rust/tests/ui/coroutine/static-reference-across-yield.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

17 lines
285 B
Rust

//@ build-pass
#![feature(coroutines)]
static A: [i32; 5] = [1, 2, 3, 4, 5];
fn main() {
#[coroutine] static || {
let u = A[{yield; 1}];
};
#[coroutine] static || {
match A {
i if { yield; true } => (),
_ => (),
}
};
}