rust/tests/ui/array-slice-vec/vec-mut-iter-borrow.rs
2023-01-11 09:32:08 +00:00

8 lines
129 B
Rust

fn main() {
let mut xs: Vec<isize> = vec![];
for x in &mut xs {
xs.push(1) //~ ERROR cannot borrow `xs`
}
}