rust/tests/ui/bytecount.stderr

27 lines
1.0 KiB
Plaintext
Raw Normal View History

error: you appear to be counting bytes the naive way
2024-02-17 06:16:29 -06:00
--> tests/ui/bytecount.rs:10:13
2018-10-06 11:18:06 -05:00
|
LL | let _ = x.iter().filter(|&&a| a == 0).count();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using the bytecount crate: `bytecount::count(x, 0)`
2018-10-06 11:18:06 -05:00
|
2020-01-31 13:21:10 -06:00
note: the lint level is defined here
2024-02-17 06:16:29 -06:00
--> tests/ui/bytecount.rs:5:8
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | #[deny(clippy::naive_bytecount)]
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^
2017-08-22 16:45:08 -05:00
error: you appear to be counting bytes the naive way
2024-02-17 06:16:29 -06: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 06:16:29 -06: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 16:45:08 -05:00
2018-01-16 10:06:27 -06:00
error: aborting due to 3 previous errors