This compiles on stable/beta/nightly and `C` is resolved as a constant and not a new binding. ``` const C: u8 = 0; fn main() { match 1u8 { mut C => {} _ => {} } } ```