mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
11 lines
385 B
Text
11 lines
385 B
Text
error: use of bitwise operator instead of lazy operator between booleans
|
|
--> tests/ui/needless_bitwise_bool.rs:23: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 1 previous error
|
|
|