summaryrefslogtreecommitdiffstats
path: root/tests/ui/coroutine/drop-tracking-yielding-in-match-guards.rs
blob: 622765d82aa5b5b12c4926d4b3cf10e23680ed23 (plain)
1
2
3
4
5
6
7
8
9
10
11
// build-pass
// edition:2018

#![feature(coroutines)]

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