Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-16149.rs
blob: 51b60725c5a0c80f4ca5e8ab08a12a34b0d18db6 [
file
] [
log
] [
blame
] [
edit
]
extern
"C"
{
static
externalValue
:
isize
;
}
fn
main
()
{
let
boolValue
=
match
42
{
externalValue
=>
true
,
//~^ ERROR match bindings cannot shadow statics
_
=>
false
,
};
}