summaryrefslogtreecommitdiffstats
path: root/tests/ui/generator/drop-tracking-yielding-in-match-guards.rs
blob: 646365e4359016eb958bc796b92512318fadc07a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// build-pass
// edition:2018
// compile-flags: -Zdrop-tracking

#![feature(generators)]

fn main() {
    let _ = static |x: u8| match x {
        y if { yield } == y + 1 => (),
        _ => (),
    };
}