2020-09-08 11:05:18 -05:00
|
|
|
error: `map_err(|_|...` ignores the original error
|
2020-09-08 18:37:14 -05:00
|
|
|
--> $DIR/map_err.rs:22:32
|
2020-09-01 15:59:37 -05:00
|
|
|
|
|
|
|
|
LL | println!("{:?}", x.map_err(|_| Errors::Ignored));
|
2020-09-02 18:21:34 -05:00
|
|
|
| ^^^
|
2020-09-01 15:59:37 -05:00
|
|
|
|
|
|
|
|
= note: `-D clippy::map-err-ignore` implied by `-D warnings`
|
2020-09-02 18:21:34 -05:00
|
|
|
= help: Consider wrapping the error in an enum variant
|
2020-09-01 15:59:37 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|