2021-05-20 05:30:31 -05:00
|
|
|
error: use of bitwise operator instead of lazy operator between booleans
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/needless_bitwise_bool.rs:22:8
|
2021-05-20 05:30:31 -05:00
|
|
|
|
|
|
|
|
LL | if y & !x {
|
|
|
|
| ^^^^^^ help: try: `y && !x`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-bitwise-bool` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|