blob: 7f0cad96a58dfbada11d1011617f36b840895e33 [file] [log] [blame]
extern {
static externalValue: isize;
}
fn main() {
let boolValue = match 42 {
externalValue => true,
//~^ ERROR match bindings cannot shadow statics
_ => false
};
}