mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-07-19 19:53:38 -04:00
8 lines
129 B
Rust
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`
|
|
}
|
|
}
|