rust/src/test/ui/vec/vec-mut-iter-borrow.rs
2018-12-25 21:08:33 -07: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`
}
}