mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
11 lines
350 B
Text
11 lines
350 B
Text
error: `map_err(|_|...` ignores the original error
|
|
--> $DIR/map_err.rs:23:32
|
|
|
|
|
LL | println!("{:?}", x.map_err(|_| Errors::Ignored));
|
|
| ^^^
|
|
|
|
|
= note: `-D clippy::map-err-ignore` implied by `-D warnings`
|
|
= help: Consider wrapping the error in an enum variant
|
|
|
|
error: aborting due to previous error
|
|
|