rust/tests/ui/map_err.stderr

12 lines
350 B
Text
Raw Normal View History

2020-09-08 18:05:18 +02:00
error: `map_err(|_|...` ignores the original error
2020-11-02 15:59:47 +01:00
--> $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