Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ check-pass
fn main() {
const MIN: i8 = -5;
match 5i8 {
MIN..=-1 => {},
_ => {},
}