11error: iteration over unordered hash-based type
2- --> tests/ui/iter_over_hash_type.rs:18 :5
2+ --> tests/ui/iter_over_hash_type.rs:20 :5
33 |
44LL | / for x in &hash_set {
55LL | |
@@ -11,7 +11,7 @@ LL | | }
1111 = help: to override `-D warnings` add `#[allow(clippy::iter_over_hash_type)]`
1212
1313error: iteration over unordered hash-based type
14- --> tests/ui/iter_over_hash_type.rs:22 :5
14+ --> tests/ui/iter_over_hash_type.rs:24 :5
1515 |
1616LL | / for x in hash_set.iter() {
1717LL | |
@@ -20,7 +20,7 @@ LL | | }
2020 | |_____^
2121
2222error: iteration over unordered hash-based type
23- --> tests/ui/iter_over_hash_type.rs:26 :5
23+ --> tests/ui/iter_over_hash_type.rs:28 :5
2424 |
2525LL | / for x in hash_set.clone() {
2626LL | |
@@ -29,7 +29,7 @@ LL | | }
2929 | |_____^
3030
3131error: iteration over unordered hash-based type
32- --> tests/ui/iter_over_hash_type.rs:30 :5
32+ --> tests/ui/iter_over_hash_type.rs:32 :5
3333 |
3434LL | / for x in hash_set.drain() {
3535LL | |
@@ -38,7 +38,7 @@ LL | | }
3838 | |_____^
3939
4040error: iteration over unordered hash-based type
41- --> tests/ui/iter_over_hash_type.rs:36 :5
41+ --> tests/ui/iter_over_hash_type.rs:38 :5
4242 |
4343LL | / for (x, y) in &hash_map {
4444LL | |
@@ -47,7 +47,7 @@ LL | | }
4747 | |_____^
4848
4949error: iteration over unordered hash-based type
50- --> tests/ui/iter_over_hash_type.rs:40 :5
50+ --> tests/ui/iter_over_hash_type.rs:42 :5
5151 |
5252LL | / for x in hash_map.keys() {
5353LL | |
@@ -56,7 +56,7 @@ LL | | }
5656 | |_____^
5757
5858error: iteration over unordered hash-based type
59- --> tests/ui/iter_over_hash_type.rs:44 :5
59+ --> tests/ui/iter_over_hash_type.rs:46 :5
6060 |
6161LL | / for x in hash_map.values() {
6262LL | |
@@ -65,7 +65,7 @@ LL | | }
6565 | |_____^
6666
6767error: iteration over unordered hash-based type
68- --> tests/ui/iter_over_hash_type.rs:48 :5
68+ --> tests/ui/iter_over_hash_type.rs:50 :5
6969 |
7070LL | / for x in hash_map.values_mut() {
7171LL | |
@@ -74,7 +74,7 @@ LL | | }
7474 | |_____^
7575
7676error: iteration over unordered hash-based type
77- --> tests/ui/iter_over_hash_type.rs:52 :5
77+ --> tests/ui/iter_over_hash_type.rs:54 :5
7878 |
7979LL | / for x in hash_map.iter() {
8080LL | |
@@ -83,7 +83,7 @@ LL | | }
8383 | |_____^
8484
8585error: iteration over unordered hash-based type
86- --> tests/ui/iter_over_hash_type.rs:56 :5
86+ --> tests/ui/iter_over_hash_type.rs:58 :5
8787 |
8888LL | / for x in hash_map.clone() {
8989LL | |
@@ -92,7 +92,7 @@ LL | | }
9292 | |_____^
9393
9494error: iteration over unordered hash-based type
95- --> tests/ui/iter_over_hash_type.rs:60 :5
95+ --> tests/ui/iter_over_hash_type.rs:62 :5
9696 |
9797LL | / for x in hash_map.drain() {
9898LL | |
@@ -101,7 +101,7 @@ LL | | }
101101 | |_____^
102102
103103error: iteration over unordered hash-based type
104- --> tests/ui/iter_over_hash_type.rs:66 :5
104+ --> tests/ui/iter_over_hash_type.rs:68 :5
105105 |
106106LL | / for x in fx_hash_set {
107107LL | |
@@ -110,7 +110,7 @@ LL | | }
110110 | |_____^
111111
112112error: iteration over unordered hash-based type
113- --> tests/ui/iter_over_hash_type.rs:70 :5
113+ --> tests/ui/iter_over_hash_type.rs:72 :5
114114 |
115115LL | / for x in fx_hash_map {
116116LL | |
0 commit comments