2021-05-11 14:34:14 -05:00
|
|
|
error: use of bitwise operator instead of lazy operator between booleans
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/needless_bitwise_bool.rs:22:8
|
2021-05-11 14:34:14 -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
|
|
|
|
|