rust/tests/ui/option_map_unit_fn_fixable.stderr

141 lines
5.8 KiB
Plaintext
Raw Normal View History

2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit function
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:34:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(do_nothing);
2018-04-09 01:20:46 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^-
| |
2019-09-25 10:49:23 -05:00
| help: try this: `if let Some(x_field) = x.field { do_nothing(x_field) }`
2018-04-09 01:20:46 -05:00
|
= note: `-D clippy::option-map-unit-fn` implied by `-D warnings`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit function
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:36:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(do_nothing);
2018-04-09 01:20:46 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^-
| |
2019-09-25 10:49:23 -05:00
| help: try this: `if let Some(x_field) = x.field { do_nothing(x_field) }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit function
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:38:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(diverge);
2018-04-09 01:20:46 -05:00
| ^^^^^^^^^^^^^^^^^^^^-
| |
2019-09-25 10:49:23 -05:00
| help: try this: `if let Some(x_field) = x.field { diverge(x_field) }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:44:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| x.do_option_nothing(value + captured));
2018-04-09 01:20:46 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { x.do_option_nothing(value + captured) }`
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:46:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { x.do_option_plus_one(value + captured); });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { x.do_option_plus_one(value + captured); }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:49:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| do_nothing(value + captured));
2018-04-09 01:20:46 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { do_nothing(value + captured) }`
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:51:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { do_nothing(value + captured) });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
2018-04-09 01:20:46 -05:00
| |
| help: try this: `if let Some(value) = x.field { do_nothing(value + captured) }`
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:53:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { do_nothing(value + captured); });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { do_nothing(value + captured); }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:55:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { { do_nothing(value + captured); } });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { do_nothing(value + captured); }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:58:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| diverge(value + captured));
2018-04-09 01:20:46 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { diverge(value + captured) }`
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:60:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { diverge(value + captured) });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
2018-04-09 01:20:46 -05:00
| |
| help: try this: `if let Some(value) = x.field { diverge(value + captured) }`
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:62:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { diverge(value + captured); });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { diverge(value + captured); }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:64:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { { diverge(value + captured); } });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { diverge(value + captured); }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:69:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { let y = plus_one(value + captured); });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { let y = plus_one(value + captured); }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:71:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { plus_one(value + captured); });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { plus_one(value + captured); }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:73:5
2018-04-09 01:20:46 -05:00
|
2018-12-27 09:57:55 -06:00
LL | x.field.map(|value| { { plus_one(value + captured); } });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
| |
| help: try this: `if let Some(value) = x.field { plus_one(value + captured); }`
2018-04-09 01:20:46 -05:00
2020-01-06 00:36:33 -06:00
error: called `map(f)` on an `Option` value where `f` is a unit closure
2019-09-25 11:03:32 -05:00
--> $DIR/option_map_unit_fn_fixable.rs:76:5
2018-04-09 01:20:46 -05:00
|
LL | x.field.map(|ref value| { do_nothing(value + captured) });}
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
2018-04-09 01:20:46 -05:00
| |
| help: try this: `if let Some(ref value) = x.field { do_nothing(value + captured) }`
error: aborting due to 17 previous errors
2018-04-09 01:20:46 -05:00