rust/tests/ui/generator/drop-tracking-yielding-in-match-guards.rs
2023-01-11 09:32:08 +00:00

13 lines
204 B
Rust

// build-pass
// edition:2018
// compile-flags: -Zdrop-tracking
#![feature(generators)]
fn main() {
let _ = static |x: u8| match x {
y if { yield } == y + 1 => (),
_ => (),
};
}