1 2 3 4 5 6 7 8 9 10 11
extern { static externalValue: isize; } fn main() { let boolValue = match 42 { externalValue => true, //~^ ERROR match bindings cannot shadow statics _ => false }; }