2020-12-06 14:01:03 +00:00
|
|
|
error: `map_err(|_|...` wildcard pattern discards the original error
|
2022-05-21 11:24:00 +00:00
|
|
|
--> $DIR/map_err.rs:22:32
|
2020-09-24 12:49:22 +00:00
|
|
|
|
|
|
|
|
LL | println!("{:?}", x.map_err(|_| Errors::Ignored));
|
|
|
|
| ^^^
|
|
|
|
|
|
2021-01-02 15:29:43 +00:00
|
|
|
= help: consider storing the original error as a source in the new error, or silence this warning using an ignored identifier (`.map_err(|_foo| ...`)
|
2022-09-22 16:04:22 +00:00
|
|
|
= note: `-D clippy::map-err-ignore` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::map_err_ignore)]`
|
2020-09-24 12:49:22 +00:00
|
|
|
|
2023-11-21 17:08:42 +00:00
|
|
|
error: aborting due to 1 previous error
|
2020-09-24 12:49:22 +00:00
|
|
|
|