rustc/tests/ui/lint/unused/unused-mut-warning-captured-var.fixed
2024-06-21 09:39:33 +02:00

10 lines
162 B
Plaintext

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