mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
11 lines
296 B
Text
11 lines
296 B
Text
|
error: use of bitwise operator instead of lazy operator between booleans
|
||
|
--> $DIR/needless_bitwise_bool.rs:24:8
|
||
|
|
|
||
|
LL | if y & !x {
|
||
|
| ^^^^^^ help: try: `y && !x`
|
||
|
|
|
||
|
= note: `-D clippy::needless-bitwise-bool` implied by `-D warnings`
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|