rust-clippy/tests/ui/option_map_or_none.stderr

27 lines
918 B
Text
Raw Normal View History

2021-11-13 13:38:28 +00:00
error: called `map_or(None, ..)` on an `Option` value. This can be done more directly by calling `map(..)` instead
--> $DIR/option_map_or_none.rs:10:13
|
LL | let _ = opt.map_or(None, |x| Some(x + 1));
2021-11-13 13:38:28 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try using `map` instead: `opt.map(|x| Some(x + 1))`
|
= note: `-D clippy::option-map-or-none` implied by `-D warnings`
2021-11-13 13:38:28 +00:00
error: called `map_or(None, ..)` on an `Option` value. This can be done more directly by calling `map(..)` instead
--> $DIR/option_map_or_none.rs:13:13
|
LL | let _ = opt.map_or(None, |x| {
| _____________^
LL | | Some(x + 1)
LL | | });
| |_________________________^
2019-10-26 19:53:42 +00:00
|
2021-11-13 13:38:28 +00:00
help: try using `map` instead
|
2021-11-13 13:38:28 +00:00
LL ~ let _ = opt.map(|x| {
2021-08-11 14:21:33 +00:00
LL + Some(x + 1)
LL ~ });
|
error: aborting due to 2 previous errors