rustc/tests/ui/nll/issue-61424.fixed
2024-06-21 09:39:33 +02:00

10 lines
148 B
Plaintext

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