Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
pattern
/
issue-17718-patterns.rs
blob: 2ca0f67f80e5ed24c3040b0df2c79e2f184bdbe6 [
file
] [
log
] [
blame
]
static
A1
:
usize
=
1
;
static
mut
A2
:
usize
=
1
;
const
A3
:
usize
=
1
;
fn
main
()
{
match
1
{
A1
=>
{}
//~ ERROR: match bindings cannot shadow statics
A2
=>
{}
//~ ERROR: match bindings cannot shadow statics
A3
=>
{}
_
=>
{}
}
}