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
258 B
Rust
Raw Normal View History

// build-pass
2023-10-19 16:46:28 -05:00
#![feature(coroutines)]
static A: [i32; 5] = [1, 2, 3, 4, 5];
fn main() {
static || {
let u = A[{yield; 1}];
};
static || {
match A {
i if { yield; true } => (),
_ => (),
}
};
}