blob: 06dbc473557398068c3e1877db7e7420ac6170e4 [file] [log] [blame]
#![feature(nll)]
#![deny(unused_mut)]
fn main() {
vec![(42, 22)].iter().map(|(mut x, _y)| ()).count();
//~^ ERROR: variable does not need to be mutable
}