mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
255 B
Rust
11 lines
255 B
Rust
fn main() {
|
|
let a = vec![1, 2, 3];
|
|
for i in &a {
|
|
for j in a {
|
|
//~^ ERROR cannot move out of `a` because it is borrowed
|
|
//~| ERROR use of moved value: `a`
|
|
println!("{} * {} = {}", i, j, i * j);
|
|
}
|
|
}
|
|
}
|