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