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