about summary refs log tree commit diff
path: root/tests/ui/issues/issue-76191.rs
blob: d2de44380c372beaf46c1f0515ab536440fd8e96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Regression test for diagnostic issue #76191
#![allow(non_snake_case)]

use std::ops::RangeInclusive;

const RANGE: RangeInclusive<i32> = 0..=255;

const RANGE2: RangeInclusive<i32> = panic!();
//~^ ERROR evaluation panicked: explicit panic

fn main() {
    let n: i32 = 1;
    match n {
        RANGE => {}
        //~^ ERROR mismatched types
        RANGE2 => {}
        //~^ ERROR mismatched types
        _ => {}
    }
}