Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
borrowck
/
issue-101119.rs
blob: 64e52eaac06e5dd4668f1ccb367b4047c3e45acd [
file
] [
log
] [
blame
] [
edit
]
struct
State
;
fn
once
(
_
:
impl
FnOnce
())
{}
fn
fill_memory_blocks_mt
(
state
:
&
mut
State
)
{
loop
{
once
(
move
||
{
//~^ ERROR use of moved value: `state`
fill_segment
(
state
);
});
}
}
fn
fill_segment
(
_
:
&
mut
State
)
{}
fn
main
()
{}