rust/tests/ui/map_err.stderr

12 lines
463 B
Plaintext
Raw Normal View History

2020-12-03 17:49:27 -05:00
error: `map_err(|_|...` wildcard pattern discards the original error
2020-11-02 23:59:47 +09: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 storing the original error as a source in the new error, or silence this warning using an ignored identifier (`.map_err(|_foo| ...`)
error: aborting due to previous error