]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/trailing_zeros.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / trailing_zeros.stderr
index 0bd3580a7ddedd381d1b95927e9584d472aec1e1..1675eb44efd3223c7a4543a9823677ce53a37626 100644 (file)
@@ -1,7 +1,7 @@
 error: bit mask could be simplified with a call to `trailing_zeros`
   --> $DIR/trailing_zeros.rs:16:5
    |
-16 |     (x & 0b1111 == 0); // suggest trailing_zeros
+LL |     (x & 0b1111 == 0); // suggest trailing_zeros
    |     ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 4`
    |
    = note: `-D clippy::verbose-bit-mask` implied by `-D warnings`
@@ -9,7 +9,7 @@ error: bit mask could be simplified with a call to `trailing_zeros`
 error: bit mask could be simplified with a call to `trailing_zeros`
   --> $DIR/trailing_zeros.rs:17:13
    |
-17 |     let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
+LL |     let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
    |             ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 5`
 
 error: aborting due to 2 previous errors