mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 18:24:04 +00:00
6 lines
130 B
Rust
6 lines
130 B
Rust
fn main() {
|
|
let mut v: Vec<()> = Vec::new();
|
|
|| &mut v;
|
|
//~^ ERROR captured variable cannot escape `FnMut` closure body
|
|
}
|