1 2 3 4 5 6 7 8
const C: u8 = 0; fn main() { match 1u8 { mut C => {} //~ ERROR match bindings cannot shadow constants _ => {} } }