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