rust/tests/ui/lint/unused/unused-mut-warning-captured-var.rs
2024-02-16 20:02:50 +00:00

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); })();
}