blob: d209e604486873a8b9a451f354fa58ef4c2ef119 [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
fn main() {
const MIN: i8 = -5;
match 5i8 {
MIN..=-1 => {},
_ => {},
}
}