rust-clippy/tests/ui/bytecount.stderr

27 lines
1 KiB
Text
Raw Normal View History

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
|
LL | let _ = x.iter().filter(|&&a| a == 0).count();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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
error: you appear to be counting bytes the naive way
2024-02-17 12:16:29 +00:00
--> tests/ui/bytecount.rs:14:13
|
LL | let _ = (&x[..]).iter().filter(|&a| *a == 0).count();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using the bytecount crate: `bytecount::count((&x[..]), 0)`
error: you appear to be counting bytes the naive way
2024-02-17 12:16:29 +00:00
--> tests/ui/bytecount.rs:32:13
|
LL | let _ = x.iter().filter(|a| b + 1 == **a).count();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 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