mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
380 B
Rust
20 lines
380 B
Rust
// 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!();
|
|
|
|
fn main() {
|
|
let n: i32 = 1;
|
|
match n {
|
|
RANGE => {}
|
|
//~^ ERROR mismatched types
|
|
RANGE2 => {}
|
|
//~^ ERROR mismatched types
|
|
_ => {}
|
|
}
|
|
}
|