@@ -7,48 +7,72 @@ LL | for x in option {
7
7
= note: `-D clippy::for-loops-over-fallibles` implied by `-D warnings`
8
8
= help: consider replacing `for x in option` with `if let Some(x) = option`
9
9
10
- error: for loop over `result `, which is a `Result `. This is more readably written as an `if let` statement
10
+ error: for loop over `option `, which is an `Option `. This is more readably written as an `if let` statement
11
11
--> $DIR/for_loops_over_fallibles.rs:14:14
12
12
|
13
+ LL | for x in option.iter() {
14
+ | ^^^^^^
15
+ |
16
+ = help: consider replacing `for x in option.iter()` with `if let Some(x) = option`
17
+
18
+ error: for loop over `result`, which is a `Result`. This is more readably written as an `if let` statement
19
+ --> $DIR/for_loops_over_fallibles.rs:19:14
20
+ |
13
21
LL | for x in result {
14
22
| ^^^^^^
15
23
|
16
24
= help: consider replacing `for x in result` with `if let Ok(x) = result`
17
25
26
+ error: for loop over `result`, which is a `Result`. This is more readably written as an `if let` statement
27
+ --> $DIR/for_loops_over_fallibles.rs:24:14
28
+ |
29
+ LL | for x in result.iter_mut() {
30
+ | ^^^^^^
31
+ |
32
+ = help: consider replacing `for x in result.iter_mut()` with `if let Ok(x) = result`
33
+
34
+ error: for loop over `result`, which is a `Result`. This is more readably written as an `if let` statement
35
+ --> $DIR/for_loops_over_fallibles.rs:29:14
36
+ |
37
+ LL | for x in result.into_iter() {
38
+ | ^^^^^^
39
+ |
40
+ = help: consider replacing `for x in result.into_iter()` with `if let Ok(x) = result`
41
+
18
42
error: for loop over `option.ok_or("x not found")`, which is a `Result`. This is more readably written as an `if let` statement
19
- --> $DIR/for_loops_over_fallibles.rs:18 :14
43
+ --> $DIR/for_loops_over_fallibles.rs:33 :14
20
44
|
21
45
LL | for x in option.ok_or("x not found") {
22
46
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
23
47
|
24
48
= help: consider replacing `for x in option.ok_or("x not found")` with `if let Ok(x) = option.ok_or("x not found")`
25
49
26
50
error: you are iterating over `Iterator::next()` which is an Option; this will compile but is probably not what you want
27
- --> $DIR/for_loops_over_fallibles.rs:24 :14
51
+ --> $DIR/for_loops_over_fallibles.rs:39 :14
28
52
|
29
53
LL | for x in v.iter().next() {
30
54
| ^^^^^^^^^^^^^^^
31
55
|
32
56
= note: `#[deny(clippy::iter_next_loop)]` on by default
33
57
34
58
error: for loop over `v.iter().next().and(Some(0))`, which is an `Option`. This is more readably written as an `if let` statement
35
- --> $DIR/for_loops_over_fallibles.rs:29 :14
59
+ --> $DIR/for_loops_over_fallibles.rs:44 :14
36
60
|
37
61
LL | for x in v.iter().next().and(Some(0)) {
38
62
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39
63
|
40
64
= help: consider replacing `for x in v.iter().next().and(Some(0))` with `if let Some(x) = v.iter().next().and(Some(0))`
41
65
42
66
error: for loop over `v.iter().next().ok_or("x not found")`, which is a `Result`. This is more readably written as an `if let` statement
43
- --> $DIR/for_loops_over_fallibles.rs:33 :14
67
+ --> $DIR/for_loops_over_fallibles.rs:48 :14
44
68
|
45
69
LL | for x in v.iter().next().ok_or("x not found") {
46
70
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
47
71
|
48
72
= help: consider replacing `for x in v.iter().next().ok_or("x not found")` with `if let Ok(x) = v.iter().next().ok_or("x not found")`
49
73
50
74
error: this loop never actually loops
51
- --> $DIR/for_loops_over_fallibles.rs:45 :5
75
+ --> $DIR/for_loops_over_fallibles.rs:60 :5
52
76
|
53
77
LL | / while let Some(x) = option {
54
78
LL | | println!("{}", x);
@@ -59,13 +83,13 @@ LL | | }
59
83
= note: `#[deny(clippy::never_loop)]` on by default
60
84
61
85
error: this loop never actually loops
62
- --> $DIR/for_loops_over_fallibles.rs:51 :5
86
+ --> $DIR/for_loops_over_fallibles.rs:66 :5
63
87
|
64
88
LL | / while let Ok(x) = result {
65
89
LL | | println!("{}", x);
66
90
LL | | break;
67
91
LL | | }
68
92
| |_____^
69
93
70
- error: aborting due to 8 previous errors
94
+ error: aborting due to 11 previous errors
71
95
0 commit comments