rust/tests/ui/lint/unused/unused-mut-warning-captured...

10 lines
166 B
Rust

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