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