summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/suggest-mut-method-for-loop-hashmap.rs
blob: b9d49a074eadeafd8d004b4f375ec8b3eade1ad1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// run-rustfix
// https://github.com/rust-lang/rust/issues/82081

use std::collections::HashMap;

struct Test {
    v: u32,
}

fn main() {
    let mut map = HashMap::new();
    map.insert("a", Test { v: 0 });

    for (_k, v) in map.iter() {
        //~^ HELP use mutable method
        //~| NOTE this iterator yields `&` references
        v.v += 1;
        //~^ ERROR cannot assign to `v.v`
        //~| NOTE `v` is a `&` reference
    }
}