Sign in
rust
/
rust
/
6ea369cfee9420f6fe3f89e4bff7b01ac0ef920d
/
.
/
tests
/
ui
/
issues
/
issue-17999.rs
blob: 941f1e7755afe9e053d8bdf7a0e264007504db17 [
file
]
#![
deny
(
unused_variables
)]
fn
main
()
{
for
_ in
1.
.
101
{
let
x
=
();
//~ ERROR: unused variable: `x`
match
()
{
a
=>
{}
//~ ERROR: unused variable: `a`
}
}
}