summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/borrow-for-loop-head.rs
blob: c2bda55e58903ea6c91ec5adc0201e256b600e62 (plain)
1
2
3
4
5
6
7
8
9
10
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);
        }
    }
}