1
1
error: manually reimplementing `is_power_of_two`
2
- --> tests/ui/manual_is_power_of_two.rs:6 :13
2
+ --> tests/ui/manual_is_power_of_two.rs:19 :13
3
3
|
4
4
LL | let _ = a.count_ones() == 1;
5
5
| ^^^^^^^^^^^^^^^^^^^ help: consider using `.is_power_of_two()`: `a.is_power_of_two()`
@@ -8,37 +8,37 @@ LL | let _ = a.count_ones() == 1;
8
8
= help: to override `-D warnings` add `#[allow(clippy::manual_is_power_of_two)]`
9
9
10
10
error: manually reimplementing `is_power_of_two`
11
- --> tests/ui/manual_is_power_of_two.rs:8 :13
11
+ --> tests/ui/manual_is_power_of_two.rs:21 :13
12
12
|
13
13
LL | let _ = a & (a - 1) == 0;
14
14
| ^^^^^^^^^^^^^^^^ help: consider using `.is_power_of_two()`: `a.is_power_of_two()`
15
15
16
16
error: manually reimplementing `is_power_of_two`
17
- --> tests/ui/manual_is_power_of_two.rs:12 :13
17
+ --> tests/ui/manual_is_power_of_two.rs:25 :13
18
18
|
19
19
LL | let _ = 1 == a.count_ones();
20
20
| ^^^^^^^^^^^^^^^^^^^ help: consider using `.is_power_of_two()`: `a.is_power_of_two()`
21
21
22
22
error: manually reimplementing `is_power_of_two`
23
- --> tests/ui/manual_is_power_of_two.rs:14 :13
23
+ --> tests/ui/manual_is_power_of_two.rs:27 :13
24
24
|
25
25
LL | let _ = (a - 1) & a == 0;
26
26
| ^^^^^^^^^^^^^^^^ help: consider using `.is_power_of_two()`: `a.is_power_of_two()`
27
27
28
28
error: manually reimplementing `is_power_of_two`
29
- --> tests/ui/manual_is_power_of_two.rs:16 :13
29
+ --> tests/ui/manual_is_power_of_two.rs:29 :13
30
30
|
31
31
LL | let _ = 0 == a & (a - 1);
32
32
| ^^^^^^^^^^^^^^^^ help: consider using `.is_power_of_two()`: `a.is_power_of_two()`
33
33
34
34
error: manually reimplementing `is_power_of_two`
35
- --> tests/ui/manual_is_power_of_two.rs:18 :13
35
+ --> tests/ui/manual_is_power_of_two.rs:31 :13
36
36
|
37
37
LL | let _ = 0 == (a - 1) & a;
38
38
| ^^^^^^^^^^^^^^^^ help: consider using `.is_power_of_two()`: `a.is_power_of_two()`
39
39
40
40
error: manually reimplementing `is_power_of_two`
41
- --> tests/ui/manual_is_power_of_two.rs:28 :13
41
+ --> tests/ui/manual_is_power_of_two.rs:41 :13
42
42
|
43
43
LL | let _ = i as u32 & (i as u32 - 1) == 0;
44
44
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.is_power_of_two()`: `(i as u32).is_power_of_two()`
0 commit comments