rust/tests/ui/pattern/issue-17718-patterns.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
267 B
Rust
Raw Normal View History

static A1: usize = 1;
static mut A2: usize = 1;
const A3: usize = 1;
fn main() {
match 1 {
2016-06-03 20:15:00 +00:00
A1 => {} //~ ERROR: match bindings cannot shadow statics
A2 => {} //~ ERROR: match bindings cannot shadow statics
A3 => {}
_ => {}
}
}