2024-09-23 10:26:43 -05:00
|
|
|
//@no-rustfix: suggests external crate
|
2023-07-27 06:40:22 -05:00
|
|
|
|
2023-06-06 15:56:57 -05:00
|
|
|
#![allow(clippy::needless_borrow, clippy::useless_vec)]
|
2022-01-11 13:31:35 -06:00
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#[deny(clippy::naive_bytecount)]
|
2017-08-22 16:45:08 -05:00
|
|
|
fn main() {
|
|
|
|
let x = vec![0_u8; 16];
|
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
// naive byte count
|
|
|
|
let _ = x.iter().filter(|&&a| a == 0).count();
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: you appear to be counting bytes the naive way
|
2017-08-22 16:45:08 -05:00
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
// naive byte count
|
|
|
|
let _ = (&x[..]).iter().filter(|&a| *a == 0).count();
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: you appear to be counting bytes the naive way
|
2017-08-22 16:45:08 -05:00
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
// not an equality count, OK.
|
|
|
|
let _ = x.iter().filter(|a| **a > 0).count();
|
2017-08-22 16:45:08 -05:00
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
// not a slice
|
|
|
|
let _ = x.iter().map(|a| a + 1).filter(|&a| a < 15).count();
|
2017-08-23 10:54:35 -05:00
|
|
|
|
|
|
|
let b = 0;
|
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
// woah there
|
|
|
|
let _ = x.iter().filter(|_| b > 0).count();
|
2017-08-23 10:54:35 -05:00
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
// nothing to see here, move along
|
|
|
|
let _ = x.iter().filter(|_a| b == b + 1).count();
|
2017-08-23 10:54:35 -05:00
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
// naive byte count
|
|
|
|
let _ = x.iter().filter(|a| b + 1 == **a).count();
|
2023-07-28 14:35:48 -05:00
|
|
|
//~^ ERROR: you appear to be counting bytes the naive way
|
2017-08-23 10:54:35 -05:00
|
|
|
|
|
|
|
let y = vec![0_u16; 3];
|
|
|
|
|
2023-07-28 13:40:44 -05:00
|
|
|
// naive count, but not bytes
|
|
|
|
let _ = y.iter().filter(|&&a| a == 0).count();
|
2017-08-22 16:45:08 -05:00
|
|
|
}
|