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