2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {
|
2015-01-08 21:54:35 +11:00
|
|
|
static externalValue: isize;
|
2014-08-17 22:10:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let boolValue = match 42 {
|
|
|
|
externalValue => true,
|
2016-06-03 23:15:00 +03:00
|
|
|
//~^ ERROR match bindings cannot shadow statics
|
2020-09-01 17:12:52 -04:00
|
|
|
_ => false,
|
2014-08-17 22:10:25 +02:00
|
|
|
};
|
|
|
|
}
|