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