-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathbool_to_int_with_if.stderr
110 lines (100 loc) · 2.93 KB
/
bool_to_int_with_if.stderr
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
error: boolean to int conversion using if
--> tests/ui/bool_to_int_with_if.rs:14:5
|
LL | / if a {
LL | | 1
LL | | } else {
LL | | 0
LL | | };
| |_____^ help: replace with from: `i32::from(a)`
|
= note: `a as i32` or `a.into()` can also be valid options
= note: `-D clippy::bool-to-int-with-if` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::bool_to_int_with_if)]`
error: boolean to int conversion using if
--> tests/ui/bool_to_int_with_if.rs:19:5
|
LL | / if a {
LL | | 0
LL | | } else {
LL | | 1
LL | | };
| |_____^ help: replace with from: `i32::from(!a)`
|
= note: `!a as i32` or `(!a).into()` can also be valid options
error: boolean to int conversion using if
--> tests/ui/bool_to_int_with_if.rs:24:5
|
LL | / if !a {
LL | | 1
LL | | } else {
LL | | 0
LL | | };
| |_____^ help: replace with from: `i32::from(!a)`
|
= note: `!a as i32` or `(!a).into()` can also be valid options
error: boolean to int conversion using if
--> tests/ui/bool_to_int_with_if.rs:29:5
|
LL | / if a || b {
LL | | 1
LL | | } else {
LL | | 0
LL | | };
| |_____^ help: replace with from: `i32::from(a || b)`
|
= note: `(a || b) as i32` or `(a || b).into()` can also be valid options
error: boolean to int conversion using if
--> tests/ui/bool_to_int_with_if.rs:34:5
|
LL | / if cond(a, b) {
LL | | 1
LL | | } else {
LL | | 0
LL | | };
| |_____^ help: replace with from: `i32::from(cond(a, b))`
|
= note: `cond(a, b) as i32` or `cond(a, b).into()` can also be valid options
error: boolean to int conversion using if
--> tests/ui/bool_to_int_with_if.rs:39:5
|
LL | / if x + y < 4 {
LL | | 1
LL | | } else {
LL | | 0
LL | | };
| |_____^ help: replace with from: `i32::from(x + y < 4)`
|
= note: `(x + y < 4) as i32` or `(x + y < 4).into()` can also be valid options
error: boolean to int conversion using if
--> tests/ui/bool_to_int_with_if.rs:48:12
|
LL | } else if b {
| ____________^
LL | | 1
LL | | } else {
LL | | 0
LL | | };
| |_____^ help: replace with from: `{ i32::from(b) }`
|
= note: `b as i32` or `b.into()` can also be valid options
error: boolean to int conversion using if
--> tests/ui/bool_to_int_with_if.rs:57:12
|
LL | } else if b {
| ____________^
LL | | 0
LL | | } else {
LL | | 1
LL | | };
| |_____^ help: replace with from: `{ i32::from(!b) }`
|
= note: `!b as i32` or `(!b).into()` can also be valid options
error: boolean to int conversion using if
--> tests/ui/bool_to_int_with_if.rs:122:5
|
LL | if a { 1 } else { 0 }
| ^^^^^^^^^^^^^^^^^^^^^ help: replace with from: `u8::from(a)`
|
= note: `a as u8` or `a.into()` can also be valid options
error: aborting due to 9 previous errors