rust/tests/ui/map_err.stderr

12 lines
463 B
Plaintext
Raw Normal View History

error: `map_err(|_|...` wildcard pattern discards the original error
--> $DIR/map_err.rs:22:32
|
LL | println!("{:?}", x.map_err(|_| Errors::Ignored));
| ^^^
|
= 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 11:04:22 -05:00
= note: `-D clippy::map-err-ignore` implied by `-D warnings`
error: aborting due to previous error