1
Fork 0
rust/src/test/ui/issues/issue-16149.rs

12 lines
203 B
Rust
Raw Normal View History

extern {
static externalValue: isize;
}
fn main() {
let boolValue = match 42 {
externalValue => true,
2016-06-03 23:15:00 +03:00
//~^ ERROR match bindings cannot shadow statics
_ => false
};
}