Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
lint
/
unused
/
unused-mut-warning-captured-var.rs
blob: 3119d83a0ebf80af35fb18a8154fec70b3c9058a [
file
] [
log
] [
blame
]
// run-rustfix
#![
forbid
(
unused_mut
)]
fn
main
()
{
let
mut
x
=
1
;
//~^ ERROR: variable does not need to be mutable
(
move
||
{
println
!(
"{}"
,
x
);
})();
}