]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/bytecount.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / bytecount.stderr
index 605cf287419dd78cb395625d26420245aeabb52e..a2890fe5a6d2cb4fe96b4b75bbd825145dfa254b 100644 (file)
@@ -1,25 +1,25 @@
 error: You appear to be counting bytes the naive way
   --> $DIR/bytecount.rs:14:13
    |
-14 |     let _ = x.iter().filter(|&&a| a == 0).count(); // naive byte count
+LL |     let _ = x.iter().filter(|&&a| a == 0).count(); // naive byte count
    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider using the bytecount crate: `bytecount::count(x, 0)`
    |
 note: lint level defined here
   --> $DIR/bytecount.rs:10:8
    |
-10 | #[deny(clippy::naive_bytecount)]
+LL | #[deny(clippy::naive_bytecount)]
    |        ^^^^^^^^^^^^^^^^^^^^^^^
 
 error: You appear to be counting bytes the naive way
   --> $DIR/bytecount.rs:16:13
    |
-16 |     let _ = (&x[..]).iter().filter(|&a| *a == 0).count(); // naive byte count
+LL |     let _ = (&x[..]).iter().filter(|&a| *a == 0).count(); // naive byte count
    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider using the bytecount crate: `bytecount::count((&x[..]), 0)`
 
 error: You appear to be counting bytes the naive way
   --> $DIR/bytecount.rs:28:13
    |
-28 |     let _ = x.iter().filter(|a| b + 1 == **a).count(); // naive byte count
+LL |     let _ = x.iter().filter(|a| b + 1 == **a).count(); // naive byte count
    |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider using the bytecount crate: `bytecount::count(x, b + 1)`
 
 error: aborting due to 3 previous errors