rustc/tests/ui/lint/unused/unused-mut-warning-captured-var.rs
2024-06-21 09:39:33 +02: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); })();
}