blob: 8726c4f173fa3a31f7e1d3a850c855289b574166 [file] [log] [blame]
// run-rustfix
#![forbid(unused_mut)]
fn main() {
let mut x = 1;
//~^ ERROR: variable does not need to be mutable
move|| { println!("{}", x); };
}