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