mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
17 lines
278 B
Rust
17 lines
278 B
Rust
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() {}
|