summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/result_map_unit_fn_unfixable.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 18:31:44 +0000
commitc23a457e72abe608715ac76f076f47dc42af07a5 (patch)
tree2772049aaf84b5c9d0ed12ec8d86812f7a7904b6 /src/tools/clippy/tests/ui/result_map_unit_fn_unfixable.stderr
parentReleasing progress-linux version 1.73.0+dfsg1-1~progress7.99u1. (diff)
downloadrustc-c23a457e72abe608715ac76f076f47dc42af07a5.tar.xz
rustc-c23a457e72abe608715ac76f076f47dc42af07a5.zip
Merging upstream version 1.74.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/result_map_unit_fn_unfixable.stderr')
-rw-r--r--src/tools/clippy/tests/ui/result_map_unit_fn_unfixable.stderr12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/tools/clippy/tests/ui/result_map_unit_fn_unfixable.stderr b/src/tools/clippy/tests/ui/result_map_unit_fn_unfixable.stderr
index 75ec1ba80..ccf9bfb94 100644
--- a/src/tools/clippy/tests/ui/result_map_unit_fn_unfixable.stderr
+++ b/src/tools/clippy/tests/ui/result_map_unit_fn_unfixable.stderr
@@ -7,9 +7,10 @@ LL | x.field.map(|value| { do_nothing(value); do_nothing(value) });
| help: try: `if let Ok(value) = x.field { ... }`
|
= note: `-D clippy::result-map-unit-fn` implied by `-D warnings`
+ = help: to override `-D warnings` add `#[allow(clippy::result_map_unit_fn)]`
error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()`
- --> $DIR/result_map_unit_fn_unfixable.rs:25:5
+ --> $DIR/result_map_unit_fn_unfixable.rs:27:5
|
LL | x.field.map(|value| if value > 0 { do_nothing(value); do_nothing(value) });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
@@ -17,9 +18,10 @@ LL | x.field.map(|value| if value > 0 { do_nothing(value); do_nothing(value)
| help: try: `if let Ok(value) = x.field { ... }`
error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()`
- --> $DIR/result_map_unit_fn_unfixable.rs:29:5
+ --> $DIR/result_map_unit_fn_unfixable.rs:32:5
|
LL | // x.field.map(|value| {
+LL | ||
LL | || do_nothing(value);
LL | || do_nothing(value)
LL | || });
@@ -28,7 +30,7 @@ LL | || });
|
error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()`
- --> $DIR/result_map_unit_fn_unfixable.rs:33:5
+ --> $DIR/result_map_unit_fn_unfixable.rs:37:5
|
LL | x.field.map(|value| { do_nothing(value); do_nothing(value); });
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
@@ -36,7 +38,7 @@ LL | x.field.map(|value| { do_nothing(value); do_nothing(value); });
| help: try: `if let Ok(value) = x.field { ... }`
error: called `map(f)` on an `Result` value where `f` is a function that returns the unit type `()`
- --> $DIR/result_map_unit_fn_unfixable.rs:37:5
+ --> $DIR/result_map_unit_fn_unfixable.rs:42:5
|
LL | "12".parse::<i32>().map(diverge);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^-
@@ -44,7 +46,7 @@ LL | "12".parse::<i32>().map(diverge);
| help: try: `if let Ok(a) = "12".parse::<i32>() { diverge(a) }`
error: called `map(f)` on an `Result` value where `f` is a function that returns the unit type `()`
- --> $DIR/result_map_unit_fn_unfixable.rs:43:5
+ --> $DIR/result_map_unit_fn_unfixable.rs:49:5
|
LL | y.map(do_nothing);
| ^^^^^^^^^^^^^^^^^-