summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/lines_filter_map_ok.stderr
blob: fa2ba0a9a4625a7c6d680ce5492ab09abe4b6f0e (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
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: `filter_map()` will run forever if the iterator repeatedly produces an `Err`
  --> $DIR/lines_filter_map_ok.rs:15: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:15: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:17: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:17:5
   |
LL |     io::stdin().lines().filter_map(|x| x.ok()).for_each(|_| ());
   |     ^^^^^^^^^^^^^^^^^^^

error: aborting due to 4 previous errors