2017-08-22 21:45:08 +00:00
|
|
|
error: You appear to be counting bytes the naive way
|
2017-08-23 15:54:35 +00:00
|
|
|
--> $DIR/bytecount.rs:8:13
|
2017-08-22 21:45:08 +00:00
|
|
|
|
|
2017-08-23 15:54:35 +00:00
|
|
|
8 | let _ = x.iter().filter(|&&a| a == 0).count(); // naive byte count
|
2017-08-22 21:45:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider using the bytecount crate: `bytecount::count(x, 0)`
|
|
|
|
|
|
2017-08-23 15:54:35 +00:00
|
|
|
note: lint level defined here
|
|
|
|
--> $DIR/bytecount.rs:4:8
|
|
|
|
|
|
|
|
|
4 | #[deny(naive_bytecount)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2017-08-22 21:45:08 +00:00
|
|
|
|
|
|
|
error: You appear to be counting bytes the naive way
|
2017-08-23 15:54:35 +00:00
|
|
|
--> $DIR/bytecount.rs:10:13
|
|
|
|
|
|
|
|
|
10 | 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:22:13
|
|
|
|
|
|
|
|
|
22 | let _ = x.iter().filter(|a| b + 1 == **a).count(); // naive byte count
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: Consider using the bytecount crate: `bytecount::count(x, b + 1)`
|
2017-08-22 21:45:08 +00:00
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|