Sign in
rust
/
rust
/
4d2f9ca08dfd4f248bbbaaa8d7708412129b28e9
/
.
/
tests
/
ui
/
nll
/
issue-61424.fixed
blob: 5ea9d531e24344749126fc9768925257e4d77dd8 [
file
]
//@ run-rustfix
#![deny(unused_mut)]
fn main
()
{
let
x
;
//~ ERROR: variable does not need to be mutable
x
=
String
::
new
();
dbg
!(
x
);
}