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