2020-11-05 13:29:48 +00:00
|
|
|
error: `.map().collect()` can be replaced with `.try_for_each()`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/map_collect_result_unit.rs:5:17
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
LL | let _ = (0..3).map(|t| Err(t + 1)).collect::<Result<(), _>>();
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(0..3).try_for_each(|t| Err(t + 1))`
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::map-collect-result-unit` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: `.map().collect()` can be replaced with `.try_for_each()`
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/map_collect_result_unit.rs:6:32
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
LL | let _: Result<(), _> = (0..3).map(|t| Err(t + 1)).collect();
|
2023-07-17 08:19:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(0..3).try_for_each(|t| Err(t + 1))`
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|