mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
13 lines
267 B
Rust
13 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 => {}
|
|
_ => {}
|
|
}
|
|
}
|