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