2020-12-03 22:49:27 +00:00
|
|
|
error: `map_err(|_|...` wildcard pattern discards the original error
|
2020-11-02 14:59:47 +00:00
|
|
|
--> $DIR/map_err.rs:23:32
|
2020-09-01 20:59:37 +00:00
|
|
|
|
|
|
|
|
LL | println!("{:?}", x.map_err(|_| Errors::Ignored));
|
2020-09-02 23:21:34 +00:00
|
|
|
| ^^^
|
2020-09-01 20:59:37 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::map-err-ignore` implied by `-D warnings`
|
2020-12-24 23:59:34 +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| ...`)
|
2020-09-01 20:59:37 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|