summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/iter_over_hash_type.rs
blob: 7000c8bf96f8d12619ec69b9cf57d1f20ef3f760 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
//@aux-build:proc_macros.rs
#![feature(rustc_private)]
#![warn(clippy::iter_over_hash_type)]
use std::collections::{HashMap, HashSet};

extern crate rustc_data_structures;

extern crate proc_macros;

fn main() {
    let mut hash_set = HashSet::<i32>::new();
    let mut hash_map = HashMap::<i32, i32>::new();
    let mut fx_hash_map = rustc_data_structures::fx::FxHashMap::<i32, i32>::default();
    let mut fx_hash_set = rustc_data_structures::fx::FxHashMap::<i32, i32>::default();
    let vec = Vec::<i32>::new();

    // test hashset
    for x in &hash_set {
        let _ = x;
    }
    for x in hash_set.iter() {
        let _ = x;
    }
    for x in hash_set.clone() {
        let _ = x;
    }
    for x in hash_set.drain() {
        let _ = x;
    }

    // test hashmap
    for (x, y) in &hash_map {
        let _ = (x, y);
    }
    for x in hash_map.keys() {
        let _ = x;
    }
    for x in hash_map.values() {
        let _ = x;
    }
    for x in hash_map.values_mut() {
        *x += 1;
    }
    for x in hash_map.iter() {
        let _ = x;
    }
    for x in hash_map.clone() {
        let _ = x;
    }
    for x in hash_map.drain() {
        let _ = x;
    }

    // test type-aliased hashers
    for x in fx_hash_set {
        let _ = x;
    }
    for x in fx_hash_map {
        let _ = x;
    }

    // shouldnt fire
    for x in &vec {
        let _ = x;
    }
    for x in vec {
        let _ = x;
    }

    // should not lint, this comes from an external crate
    proc_macros::external! {
      for _ in HashMap::<i32, i32>::new() {}
    }
}