2020-07-23 13:18:13 +00:00
|
|
|
error: you appear to be counting bytes the naive way
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bytecount.rs:10:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2023-07-28 18:40:44 +00:00
|
|
|
LL | let _ = x.iter().filter(|&&a| a == 0).count();
|
2020-07-23 13:18:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using the bytecount crate: `bytecount::count(x, 0)`
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2020-01-31 19:21:10 +00:00
|
|
|
note: the lint level is defined here
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bytecount.rs:5:8
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | #[deny(clippy::naive_bytecount)]
|
2018-10-06 16:18:06 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
2017-08-22 21:45:08 +00:00
|
|
|
|
2020-07-23 13:18:13 +00:00
|
|
|
error: you appear to be counting bytes the naive way
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bytecount.rs:14:13
|
2017-08-23 15:54:35 +00:00
|
|
|
|
|
2023-07-28 18:40:44 +00:00
|
|
|
LL | let _ = (&x[..]).iter().filter(|&a| *a == 0).count();
|
2020-07-23 13:18:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using the bytecount crate: `bytecount::count((&x[..]), 0)`
|
2017-08-23 15:54:35 +00:00
|
|
|
|
2020-07-23 13:18:13 +00:00
|
|
|
error: you appear to be counting bytes the naive way
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/bytecount.rs:32:13
|
2017-08-23 15:54:35 +00:00
|
|
|
|
|
2023-07-28 18:40:44 +00:00
|
|
|
LL | let _ = x.iter().filter(|a| b + 1 == **a).count();
|
2020-07-23 13:18:13 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using the bytecount crate: `bytecount::count(x, b + 1)`
|
2017-08-22 21:45:08 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|