rust/src/test/ui/array-slice-vec/vec-mut-iter-borrow.rs
2020-12-31 08:01:58 +09:00

7 lines
129 B
Rust

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