2020-08-11 13:43:21 +00:00
|
|
|
error: you appear to be counting bytes the naive way
|
2022-01-27 14:12:45 +00:00
|
|
|
--> $DIR/bytecount.rs:7:13
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = x.iter().filter(|&&a| a == 0).count(); // naive byte count
|
2020-08-11 13:43:21 +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
|
2022-01-27 14:12:45 +00:00
|
|
|
--> $DIR/bytecount.rs:3: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-08-11 13:43:21 +00:00
|
|
|
error: you appear to be counting bytes the naive way
|
2022-01-27 14:12:45 +00:00
|
|
|
--> $DIR/bytecount.rs:9:13
|
2017-08-23 15:54:35 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = (&x[..]).iter().filter(|&a| *a == 0).count(); // naive byte count
|
2020-08-11 13:43:21 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using the bytecount crate: `bytecount::count((&x[..]), 0)`
|
2017-08-23 15:54:35 +00:00
|
|
|
|
2020-08-11 13:43:21 +00:00
|
|
|
error: you appear to be counting bytes the naive way
|
2022-01-27 14:12:45 +00:00
|
|
|
--> $DIR/bytecount.rs:21:13
|
2017-08-23 15:54:35 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _ = x.iter().filter(|a| b + 1 == **a).count(); // naive byte count
|
2020-08-11 13:43:21 +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
|
|
|
|
|