]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/needless_bitwise_bool.stderr
Rollup merge of #100291 - WaffleLapkin:cstr_const_methods, r=oli-obk
[rust.git] / src / tools / clippy / tests / ui / needless_bitwise_bool.stderr
1 error: use of bitwise operator instead of lazy operator between booleans
2   --> $DIR/needless_bitwise_bool.rs:24:8
3    |
4 LL |     if y & !x {
5    |        ^^^^^^ help: try: `y && !x`
6    |
7    = note: `-D clippy::needless-bitwise-bool` implied by `-D warnings`
8
9 error: aborting due to previous error
10