blob: 55196177f6934b01ada446f73d5f55ef2556fbf1 [file] [log] [blame]
const C: u8 = 0;
fn main() {
match 1u8 {
mut C => {} //~ ERROR match bindings cannot shadow constants
_ => {}
}
}