os-rust/tests/ui/coroutine/static-reference-across-yield.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
285 B
Rust
Raw Normal View History

//@ build-pass
2023-10-19 21:46:28 +00:00
#![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 } => (),
_ => (),
}
};
}