rust/tests/ui/lint/unused/unused-mut-warning-captured-var.fixed
2023-01-11 09:32:08 +00:00

10 lines
161 B
Rust

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