Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const C: u8 = 0;
fn main() {
match 1u8 {
mut C => {} //~ ERROR match bindings cannot shadow constants
_ => {}
}