summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/result_map_unit_fn_unfixable.stderr
blob: d0e534f635682cefd2e12a4f3a390cb3ff7cc3ef (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
error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()`
  --> $DIR/result_map_unit_fn_unfixable.rs:23:5
   |
LL |     x.field.map(|value| { do_nothing(value); do_nothing(value) });
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
   |     |
   |     help: try this: `if let Ok(value) = x.field { ... }`
   |
   = note: `-D clippy::result-map-unit-fn` implied by `-D warnings`

error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()`
  --> $DIR/result_map_unit_fn_unfixable.rs:25:5
   |
LL |     x.field.map(|value| if value > 0 { do_nothing(value); do_nothing(value) });
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
   |     |
   |     help: try this: `if let Ok(value) = x.field { ... }`

error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()`
  --> $DIR/result_map_unit_fn_unfixable.rs:29:5
   |
LL | //     x.field.map(|value| {
LL | ||         do_nothing(value);
LL | ||         do_nothing(value)
LL | ||     });
   | ||______^- help: try this: `if let Ok(value) = x.field { ... }`
   |  |______|
   | 

error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()`
  --> $DIR/result_map_unit_fn_unfixable.rs:33:5
   |
LL |     x.field.map(|value| { do_nothing(value); do_nothing(value); });
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
   |     |
   |     help: try this: `if let Ok(value) = x.field { ... }`

error: called `map(f)` on an `Result` value where `f` is a function that returns the unit type `()`
  --> $DIR/result_map_unit_fn_unfixable.rs:37:5
   |
LL |     "12".parse::<i32>().map(diverge);
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
   |     |
   |     help: try this: `if let Ok(a) = "12".parse::<i32>() { diverge(a) }`

error: called `map(f)` on an `Result` value where `f` is a function that returns the unit type `()`
  --> $DIR/result_map_unit_fn_unfixable.rs:43:5
   |
LL |     y.map(do_nothing);
   |     ^^^^^^^^^^^^^^^^^-
   |     |
   |     help: try this: `if let Ok(_y) = y { do_nothing(_y) }`

error: aborting due to 6 previous errors