mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
14 lines
280 B
Rust
14 lines
280 B
Rust
//! Regression test for https://github.com/rust-lang/rust/issues/16149
|
|
|
|
extern "C" {
|
|
static externalValue: isize;
|
|
}
|
|
|
|
fn main() {
|
|
let boolValue = match 42 {
|
|
externalValue => true,
|
|
//~^ ERROR match bindings cannot shadow statics
|
|
_ => false,
|
|
};
|
|
}
|