mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
12 lines
267 B
Rust
12 lines
267 B
Rust
static A1: usize = 1;
|
|
static mut A2: usize = 1;
|
|
const A3: usize = 1;
|
|
|
|
fn main() {
|
|
match 1 {
|
|
A1 => {} //~ ERROR: match bindings cannot shadow statics
|
|
A2 => {} //~ ERROR: match bindings cannot shadow statics
|
|
A3 => {}
|
|
_ => {}
|
|
}
|
|
}
|