mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
109 lines
2.8 KiB
Text
109 lines
2.8 KiB
Text
error: boolean to int conversion using if
|
|
--> $DIR/bool_to_int_with_if.rs:16: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`
|
|
|
|
error: boolean to int conversion using if
|
|
--> $DIR/bool_to_int_with_if.rs:21: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
|
|
--> $DIR/bool_to_int_with_if.rs:26: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
|
|
--> $DIR/bool_to_int_with_if.rs:31: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
|
|
--> $DIR/bool_to_int_with_if.rs:36: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
|
|
--> $DIR/bool_to_int_with_if.rs:41: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
|
|
--> $DIR/bool_to_int_with_if.rs:50: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
|
|
--> $DIR/bool_to_int_with_if.rs:59: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
|
|
--> $DIR/bool_to_int_with_if.rs:126: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
|
|
|