mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
19 lines
668 B
Text
19 lines
668 B
Text
error: this call to `map()` won't have an effect on the call to `count()`
|
|
--> $DIR/suspicious_map.rs:4:13
|
|
|
|
|
LL | let _ = (0..3).map(|x| x + 2).count();
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::suspicious-map` implied by `-D warnings`
|
|
= help: make sure you did not confuse `map` with `filter` or `for_each`
|
|
|
|
error: this call to `map()` won't have an effect on the call to `count()`
|
|
--> $DIR/suspicious_map.rs:7:13
|
|
|
|
|
LL | let _ = (0..3).map(f).count();
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: make sure you did not confuse `map` with `filter` or `for_each`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|