Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
borrowck
/
move-in-pattern-mut-in-loop.rs
blob: 4b42f9d4cd58009c7e22614dae3396354b2bcca8 [
file
] [
log
] [
blame
] [
edit
]
// Regression test for #80913.
fn
main
()
{
let
mut
x
=
42
_i32
;
let
mut
opt
=
Some
(&
mut
x
);
for
_ in
0.
.
5
{
if
let
Some
(
mut
_x
)
=
opt
{}
//~^ ERROR: use of moved value
}
}