about summary refs log tree commit diff
path: root/tests/ui/match/guard-pattern-ordering-14865.rs
blob: a789599c566845102aface070d52041d147263ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Regression test for https://github.com/rust-lang/rust/issues/14865

//@ run-pass
#![allow(dead_code)]

enum X {
    Foo(usize),
    Bar(bool)
}

fn main() {
    let x = match X::Foo(42) {
        X::Foo(..) => 1,
        _ if true => 0,
        X::Bar(..) => panic!("Oh dear")
    };
    assert_eq!(x, 1);

    let x = match X::Foo(42) {
        _ if true => 0,
        X::Foo(..) => 1,
        X::Bar(..) => panic!("Oh dear")
    };
    assert_eq!(x, 0);
}