blob: 3cd2040c9fafae9b1b826cffc376bfd044bd9c1d [file] [log] [blame] [edit]
//! regression test for https://github.com/rust-lang/rust/issues/27033
fn main() {
match Some(1) {
None @ _ => {} //~ ERROR match bindings cannot shadow unit variants
};
const C: u8 = 1;
match 1 {
C @ 2 => {
//~^ ERROR match bindings cannot shadow constant
println!("{}", C);
}
_ => {}
};
}