]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/trailing_zeros.stderr
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / trailing_zeros.stderr
index 91e4d59da9867aeac4b3b2f55127aeccd428cb36..798551118309e01650118c0beb29ca398b2bb5ae 100644 (file)
@@ -1,16 +1,16 @@
 error: bit mask could be simplified with a call to `trailing_zeros`
- --> $DIR/trailing_zeros.rs:7:31
-  |
-7 |     let _ = #[clippy(author)] (x & 0b1111 == 0);  // suggest trailing_zeros
-  |                               ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 4`
-  |
-  = note: `-D verbose-bit-mask` implied by `-D warnings`
+  --> $DIR/trailing_zeros.rs:6:13
+   |
+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
-  |
-8 |     let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
-  |             ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 5`
 --> $DIR/trailing_zeros.rs:7:13
+   |
+LL |     let _ = x & 0b1_1111 == 0; // suggest trailing_zeros
+   |             ^^^^^^^^^^^^^^^^^ help: try: `x.trailing_zeros() >= 5`
 
 error: aborting due to 2 previous errors