blob: cb4fb46bd055cfa50989c5030c50db29a2189b70 [file] [log] [blame]
// compile-pass
fn main() {
const MIN: i8 = -5;
match 5i8 {
MIN..=-1 => {},
_ => {},
}
}