about summary refs log tree commit diff
path: root/tests/ui/half-open-range-patterns/half-open-range-pats-inclusive-match-arrow.rs
blob: cff0c42eb52fc167c6c8c48a2faea17bcbcd4d90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
fn main() {
    let x = 42;
    match x {
        //~^ ERROR: non-exhaustive patterns
        //~| NOTE: not covered
        //~| NOTE: matched value is of type
        0..=73 => {},
        74..=> {},
        //~^ ERROR unexpected `>` after inclusive range
        //~| NOTE this is parsed as an inclusive range `..=`
    }
}