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