rust/tests/ui/result_map_unit_fn.stderr

195 lines
7.5 KiB
Text
Raw Normal View History

2018-04-15 13:00:12 +02:00
error: called `map(f)` on an Result value where `f` is a unit function
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:45:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
45 | x.field.map(do_nothing);
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(x_field) = x.field { do_nothing(...) }`
|
= note: `-D clippy::result-map-unit-fn` implied by `-D warnings`
2018-04-15 13:00:12 +02:00
error: called `map(f)` on an Result value where `f` is a unit function
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:47:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
47 | x.field.map(do_nothing);
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(x_field) = x.field { do_nothing(...) }`
error: called `map(f)` on an Result value where `f` is a unit function
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:49:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
49 | x.field.map(diverge);
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(x_field) = x.field { diverge(...) }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:55:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
55 | x.field.map(|value| x.do_result_nothing(value + captured));
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { x.do_result_nothing(value + captured) }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:57:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
57 | x.field.map(|value| { x.do_result_plus_one(value + captured); });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { x.do_result_plus_one(value + captured); }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:60:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
60 | x.field.map(|value| do_nothing(value + captured));
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { do_nothing(value + captured) }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:62:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
62 | x.field.map(|value| { do_nothing(value + captured) });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { do_nothing(value + captured) }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:64:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
64 | x.field.map(|value| { do_nothing(value + captured); });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { do_nothing(value + captured); }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:66:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
66 | x.field.map(|value| { { do_nothing(value + captured); } });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { do_nothing(value + captured); }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:69:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
69 | x.field.map(|value| diverge(value + captured));
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { diverge(value + captured) }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:71:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
71 | x.field.map(|value| { diverge(value + captured) });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { diverge(value + captured) }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:73:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
73 | x.field.map(|value| { diverge(value + captured); });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { diverge(value + captured); }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:75:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
75 | x.field.map(|value| { { diverge(value + captured); } });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { diverge(value + captured); }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:80:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
80 | x.field.map(|value| { let y = plus_one(value + captured); });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { let y = plus_one(value + captured); }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:82:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
82 | x.field.map(|value| { plus_one(value + captured); });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { plus_one(value + captured); }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:84:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
84 | x.field.map(|value| { { plus_one(value + captured); } });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { plus_one(value + captured); }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:87:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
87 | x.field.map(|ref value| { do_nothing(value + captured) });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(ref value) = x.field { do_nothing(value + captured) }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:90:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
90 | x.field.map(|value| { do_nothing(value); do_nothing(value) });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { ... }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:92:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
92 | x.field.map(|value| if value > 0 { do_nothing(value); do_nothing(value) });
2018-04-15 13:00:12 +02:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { ... }`
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:96:5
2018-04-15 13:00:12 +02:00
|
2018-10-06 18:18:06 +02:00
96 | x.field.map(|value| {
2018-04-15 13:00:12 +02:00
| _____^
| |_____|
| ||
2018-10-06 18:18:06 +02:00
97 | || do_nothing(value);
98 | || do_nothing(value)
99 | || });
2018-04-15 13:00:12 +02:00
| ||______^- help: try this: `if let Ok(value) = x.field { ... }`
| |_______|
|
error: called `map(f)` on an Result value where `f` is a unit closure
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:100:5
|
100 | x.field.map(|value| { do_nothing(value); do_nothing(value); });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(value) = x.field { ... }`
2018-04-15 13:00:12 +02:00
error: called `map(f)` on an Result value where `f` is a unit function
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:104:5
|
104 | "12".parse::<i32>().map(diverge);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(_) = "12".parse::<i32>() { diverge(...) }`
2018-04-15 13:00:12 +02:00
error: called `map(f)` on an Result value where `f` is a unit function
2018-10-06 18:18:06 +02:00
--> $DIR/result_map_unit_fn.rs:110:5
|
2018-10-06 18:18:06 +02:00
110 | y.map(do_nothing);
| ^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Ok(_y) = y { do_nothing(...) }`
2018-04-15 13:00:12 +02:00
error: aborting due to 23 previous errors