blob: e1b4ba40376f88d0904b96cf6c459e57bbbd56ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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: aborting due to previous error
|