]> git.lizzy.rs Git - rust.git/commitdiff
Update the stderr message in ui tests
authorRicky <Ricky@Hosfelt.io>
Thu, 3 Dec 2020 22:49:27 +0000 (17:49 -0500)
committerRicky <Ricky@Hosfelt.io>
Thu, 3 Dec 2020 22:51:42 +0000 (17:51 -0500)
tests/ui/map_err.stderr

index 8193f7cfb8e02993f36d8b66808f04eeb4c442e2..8ee2941790d3542d243502c8dd81135480830d06 100644 (file)
@@ -1,11 +1,11 @@
-error: `map_err(|_|...` ignores the original error
+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 wrapping the error in an enum variant for more error context, or using a named wildcard (`.map_err(|_ignored| ...`) to intentionally ignore the error
+   = 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