rust/tests/ui/bytecount.stderr

27 lines
1.1 KiB
Text
Raw Normal View History

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