summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/issue-88649.rs
blob: 43e562b5a7da4b96c83b6793f1d2db9745fdf0d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// check-pass
#![crate_type = "lib"]

enum Foo {
    Variant1(bool),
    Variant2(bool),
}

const _: () = {
    let mut n = 0;
    while n < 2 {
        match Foo::Variant1(true) {
            Foo::Variant1(x) | Foo::Variant2(x) if x => {}
            _ => {}
        }
        n += 1;
    }
};