summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binding/range-inclusive-pattern-precedence.rs
blob: 858239bb177c978645756bfb32706637f035dbaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// run-pass
#![feature(box_patterns)]

const VALUE: usize = 21;

pub fn main() {
    match &18 {
        &(18..=18) => {}
        _ => { unreachable!(); }
    }
    match &21 {
        &(VALUE..=VALUE) => {}
        _ => { unreachable!(); }
    }
    match Box::new(18) {
        box (18..=18) => {}
        _ => { unreachable!(); }
    }
    match Box::new(21) {
        box (VALUE..=VALUE) => {}
        _ => { unreachable!(); }
    }
}