1
1
error: iteration over unordered hash-based type
2
- --> tests/ui/iter_over_hash_type.rs:18 :5
2
+ --> tests/ui/iter_over_hash_type.rs:21 :5
3
3
|
4
4
LL | / for x in &hash_set {
5
5
LL | |
@@ -11,7 +11,7 @@ LL | | }
11
11
= help: to override `-D warnings` add `#[allow(clippy::iter_over_hash_type)]`
12
12
13
13
error: iteration over unordered hash-based type
14
- --> tests/ui/iter_over_hash_type.rs:22 :5
14
+ --> tests/ui/iter_over_hash_type.rs:25 :5
15
15
|
16
16
LL | / for x in hash_set.iter() {
17
17
LL | |
@@ -20,7 +20,7 @@ LL | | }
20
20
| |_____^
21
21
22
22
error: iteration over unordered hash-based type
23
- --> tests/ui/iter_over_hash_type.rs:26 :5
23
+ --> tests/ui/iter_over_hash_type.rs:29 :5
24
24
|
25
25
LL | / for x in hash_set.clone() {
26
26
LL | |
@@ -29,7 +29,7 @@ LL | | }
29
29
| |_____^
30
30
31
31
error: iteration over unordered hash-based type
32
- --> tests/ui/iter_over_hash_type.rs:30 :5
32
+ --> tests/ui/iter_over_hash_type.rs:33 :5
33
33
|
34
34
LL | / for x in hash_set.drain() {
35
35
LL | |
@@ -38,7 +38,7 @@ LL | | }
38
38
| |_____^
39
39
40
40
error: iteration over unordered hash-based type
41
- --> tests/ui/iter_over_hash_type.rs:36 :5
41
+ --> tests/ui/iter_over_hash_type.rs:39 :5
42
42
|
43
43
LL | / for (x, y) in &hash_map {
44
44
LL | |
@@ -47,7 +47,7 @@ LL | | }
47
47
| |_____^
48
48
49
49
error: iteration over unordered hash-based type
50
- --> tests/ui/iter_over_hash_type.rs:40 :5
50
+ --> tests/ui/iter_over_hash_type.rs:43 :5
51
51
|
52
52
LL | / for x in hash_map.keys() {
53
53
LL | |
@@ -56,7 +56,7 @@ LL | | }
56
56
| |_____^
57
57
58
58
error: iteration over unordered hash-based type
59
- --> tests/ui/iter_over_hash_type.rs:44 :5
59
+ --> tests/ui/iter_over_hash_type.rs:47 :5
60
60
|
61
61
LL | / for x in hash_map.values() {
62
62
LL | |
@@ -65,7 +65,7 @@ LL | | }
65
65
| |_____^
66
66
67
67
error: iteration over unordered hash-based type
68
- --> tests/ui/iter_over_hash_type.rs:48 :5
68
+ --> tests/ui/iter_over_hash_type.rs:51 :5
69
69
|
70
70
LL | / for x in hash_map.values_mut() {
71
71
LL | |
@@ -74,7 +74,7 @@ LL | | }
74
74
| |_____^
75
75
76
76
error: iteration over unordered hash-based type
77
- --> tests/ui/iter_over_hash_type.rs:52 :5
77
+ --> tests/ui/iter_over_hash_type.rs:55 :5
78
78
|
79
79
LL | / for x in hash_map.iter() {
80
80
LL | |
@@ -83,7 +83,7 @@ LL | | }
83
83
| |_____^
84
84
85
85
error: iteration over unordered hash-based type
86
- --> tests/ui/iter_over_hash_type.rs:56 :5
86
+ --> tests/ui/iter_over_hash_type.rs:59 :5
87
87
|
88
88
LL | / for x in hash_map.clone() {
89
89
LL | |
@@ -92,7 +92,7 @@ LL | | }
92
92
| |_____^
93
93
94
94
error: iteration over unordered hash-based type
95
- --> tests/ui/iter_over_hash_type.rs:60 :5
95
+ --> tests/ui/iter_over_hash_type.rs:63 :5
96
96
|
97
97
LL | / for x in hash_map.drain() {
98
98
LL | |
@@ -101,7 +101,7 @@ LL | | }
101
101
| |_____^
102
102
103
103
error: iteration over unordered hash-based type
104
- --> tests/ui/iter_over_hash_type.rs:66 :5
104
+ --> tests/ui/iter_over_hash_type.rs:69 :5
105
105
|
106
106
LL | / for x in fx_hash_set {
107
107
LL | |
@@ -110,7 +110,7 @@ LL | | }
110
110
| |_____^
111
111
112
112
error: iteration over unordered hash-based type
113
- --> tests/ui/iter_over_hash_type.rs:70 :5
113
+ --> tests/ui/iter_over_hash_type.rs:73 :5
114
114
|
115
115
LL | / for x in fx_hash_map {
116
116
LL | |
0 commit comments