summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/map_err.stderr
blob: 8ee2941790d3542d243502c8dd81135480830d06 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: `map_err(|_|...` wildcard pattern discards 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 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