summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/map_err.stderr
blob: 7273f4603807865c42ff29e87d7878c12bceaaaa (plain)
1
2
3
4
5
6
7
8
9
10
11
error: `map_err(|_|...` ignores the original error
  --> $DIR/map_err.rs:22: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