summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/lines_filter_map_ok.stderr
blob: 9833ab16473c8ddd5940c80d43041fed8325d9fd (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
75
76
error: `filter_map()` will run forever if the iterator repeatedly produces an `Err`
  --> $DIR/lines_filter_map_ok.rs:9:31
   |
LL |     BufReader::new(f).lines().filter_map(Result::ok).for_each(|_| ());
   |                               ^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `map_while(Result::ok)`
   |
note: this expression returning a `std::io::Lines` may produce an infinite number of `Err` in case of a read error
  --> $DIR/lines_filter_map_ok.rs:9:5
   |
LL |     BufReader::new(f).lines().filter_map(Result::ok).for_each(|_| ());
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^
   = note: `-D clippy::lines-filter-map-ok` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::lines_filter_map_ok)]`

error: `flat_map()` will run forever if the iterator repeatedly produces an `Err`
  --> $DIR/lines_filter_map_ok.rs:12:31
   |
LL |     BufReader::new(f).lines().flat_map(Result::ok).for_each(|_| ());
   |                               ^^^^^^^^^^^^^^^^^^^^ help: replace with: `map_while(Result::ok)`
   |
note: this expression returning a `std::io::Lines` may produce an infinite number of `Err` in case of a read error
  --> $DIR/lines_filter_map_ok.rs:12:5
   |
LL |     BufReader::new(f).lines().flat_map(Result::ok).for_each(|_| ());
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^

error: `flatten()` will run forever if the iterator repeatedly produces an `Err`
  --> $DIR/lines_filter_map_ok.rs:15:31
   |
LL |     BufReader::new(f).lines().flatten().for_each(|_| ());
   |                               ^^^^^^^^^ help: replace with: `map_while(Result::ok)`
   |
note: this expression returning a `std::io::Lines` may produce an infinite number of `Err` in case of a read error
  --> $DIR/lines_filter_map_ok.rs:15:5
   |
LL |     BufReader::new(f).lines().flatten().for_each(|_| ());
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^

error: `filter_map()` will run forever if the iterator repeatedly produces an `Err`
  --> $DIR/lines_filter_map_ok.rs:19:25
   |
LL |     io::stdin().lines().filter_map(Result::ok).for_each(|_| ());
   |                         ^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `map_while(Result::ok)`
   |
note: this expression returning a `std::io::Lines` may produce an infinite number of `Err` in case of a read error
  --> $DIR/lines_filter_map_ok.rs:19:5
   |
LL |     io::stdin().lines().filter_map(Result::ok).for_each(|_| ());
   |     ^^^^^^^^^^^^^^^^^^^

error: `filter_map()` will run forever if the iterator repeatedly produces an `Err`
  --> $DIR/lines_filter_map_ok.rs:21:25
   |
LL |     io::stdin().lines().filter_map(|x| x.ok()).for_each(|_| ());
   |                         ^^^^^^^^^^^^^^^^^^^^^^ help: replace with: `map_while(Result::ok)`
   |
note: this expression returning a `std::io::Lines` may produce an infinite number of `Err` in case of a read error
  --> $DIR/lines_filter_map_ok.rs:21:5
   |
LL |     io::stdin().lines().filter_map(|x| x.ok()).for_each(|_| ());
   |     ^^^^^^^^^^^^^^^^^^^

error: `flatten()` will run forever if the iterator repeatedly produces an `Err`
  --> $DIR/lines_filter_map_ok.rs:23:25
   |
LL |     io::stdin().lines().flatten().for_each(|_| ());
   |                         ^^^^^^^^^ help: replace with: `map_while(Result::ok)`
   |
note: this expression returning a `std::io::Lines` may produce an infinite number of `Err` in case of a read error
  --> $DIR/lines_filter_map_ok.rs:23:5
   |
LL |     io::stdin().lines().flatten().for_each(|_| ());
   |     ^^^^^^^^^^^^^^^^^^^

error: aborting due to 6 previous errors