blob: c849ac8c79e43243bfb40c18c7803d6aac5cd108 [file] [log] [blame]
// run-rustfix
#![deny(unused_mut)]
#![allow(unused_variables)] // for rustfix
fn main() {
vec![(42, 22)].iter().map(|(mut x, _y)| ()).count();
//~^ ERROR: variable does not need to be mutable
}