mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
11 lines
379 B
Text
11 lines
379 B
Text
error: use of bitwise operator instead of lazy operator between booleans
|
|
--> $DIR/needless_bitwise_bool.rs:22:8
|
|
|
|
|
LL | if y & !x {
|
|
| ^^^^^^ help: try: `y && !x`
|
|
|
|
|
= note: `-D clippy::needless-bitwise-bool` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::needless_bitwise_bool)]`
|
|
|
|
error: aborting due to previous error
|
|
|