rust/tests/ui/nll/issue-61424.fixed
2023-01-11 09:32:08 +00:00

10 lines
147 B
Rust

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