blob: 3794fc5d441c6c5b85038b9a9266c3af802fedd7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
//@no-rustfix
#![allow(clippy::needless_borrow, clippy::useless_vec)]
#[deny(clippy::naive_bytecount)]
fn main() {
let x = vec![0_u8; 16];
// naive byte count
let _ = x.iter().filter(|&&a| a == 0).count();
//~^ ERROR: you appear to be counting bytes the naive way
// naive byte count
let _ = (&x[..]).iter().filter(|&a| *a == 0).count();
//~^ ERROR: you appear to be counting bytes the naive way
// not an equality count, OK.
let _ = x.iter().filter(|a| **a > 0).count();
// not a slice
let _ = x.iter().map(|a| a + 1).filter(|&a| a < 15).count();
let b = 0;
// woah there
let _ = x.iter().filter(|_| b > 0).count();
// nothing to see here, move along
let _ = x.iter().filter(|_a| b == b + 1).count();
// naive byte count
let _ = x.iter().filter(|a| b + 1 == **a).count();
//~^ ERROR: you appear to be counting bytes the naive way
let y = vec![0_u16; 3];
// naive count, but not bytes
let _ = y.iter().filter(|&&a| a == 0).count();
}
|