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