Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
nll
/
issue-46023.rs
blob: a923eb24421010995c5cc203d49e4893ad4690fb [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
let
x
=
0
;
(
move
||
{
x
=
1
;
//~^ ERROR cannot assign to `x`, as it is not declared as mutable [E0594]
})()
}