2020-06-09 09:36:01 -05:00
|
|
|
error: length comparison to zero
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/len_zero_ranges.rs:7:17
|
2020-06-09 09:36:01 -05:00
|
|
|
|
|
|
|
|
LL | let _ = (0..42).len() == 0;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(0..42).is_empty()`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::len-zero` implied by `-D warnings`
|
|
|
|
|
2020-08-25 14:05:02 -05:00
|
|
|
error: length comparison to zero
|
2023-07-27 06:40:22 -05:00
|
|
|
--> $DIR/len_zero_ranges.rs:11:17
|
2020-08-25 14:05:02 -05:00
|
|
|
|
|
|
|
|
LL | let _ = (0_u8..=42).len() == 0;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(0_u8..=42).is_empty()`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2020-06-09 09:36:01 -05:00
|
|
|
|