mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-03 00:49:38 +03:00
1bd997a452
Split invalid-compile-flags into run-pass & invalid Update tests/ui/README.md
15 lines
367 B
Rust
15 lines
367 B
Rust
//! 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);
|
|
}
|
|
_ => {}
|
|
};
|
|
}
|