]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/trailing_zeros.stderr
iterate List by value
[rust.git] / tests / ui / trailing_zeros.stderr
index 61289b2447141370fd09f56bcdb133f0a60e0cf8..320d9cc3f643412bad951fad6547a7ea07a8d2a3 100644 (file)
@@ -1,13 +1,13 @@
 error: bit mask could be simplified with a call to `trailing_zeros`
-  --> $DIR/trailing_zeros.rs:7:5
+  --> $DIR/trailing_zeros.rs:5:13
    |
-LL |     (x & 0b1111 == 0); // suggest trailing_zeros
-   |     ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 4`
+LL |     let _ = (x & 0b1111 == 0); // suggest trailing_zeros
+   |             ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 4`
    |
    = note: `-D clippy::verbose-bit-mask` implied by `-D warnings`
 
 error: bit mask could be simplified with a call to `trailing_zeros`
-  --> $DIR/trailing_zeros.rs:8:13
+  --> $DIR/trailing_zeros.rs:6:13
    |
 LL |     let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
    |             ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 5`