rust/tests/ui/borrowck/issue-101119.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
278 B
Rust
Raw Normal View History

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() {}