rust/tests/ui/nll/issue-61424.fixed
2024-02-16 20:02:50 +00:00

10 lines
148 B
Rust

//@ run-rustfix
#![deny(unused_mut)]
fn main() {
let x; //~ ERROR: variable does not need to be mutable
x = String::new();
dbg!(x);
}