DEBSOURCES
Skip Quicknav
sources / rustc / 1.70.0%2Bdfsg1-9 / tests / ui / nll / issue-61424.rs
123456789
// run-rustfix #![deny(unused_mut)] fn main() { let mut x; //~ ERROR: variable does not need to be mutable x = String::new(); dbg!(x); }