Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
unused-mut-issue-50343.fixed
blob: 827a90d646fb78d1f6025164c478f5bab181705a [
file
] [
log
] [
blame
] [
edit
]
//@ run-rustfix
#![deny(unused_mut)]
#![allow(unused_variables)] // for rustfix
fn main
()
{
vec
![(
42
,
22
)].
iter
().
map
(|(
x
,
_y
)|
()).
count
();
//~^ ERROR: variable does not need to be mutable
}