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