2020-06-09 09:36:01 -05:00
|
|
|
error: length comparison to zero
|
2023-08-24 14:32:12 -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-28 09:10:16 -05:00
|
|
|
error: length comparison to zero
|
2023-08-24 14:32:12 -05:00
|
|
|
--> $DIR/len_zero_ranges.rs:11:17
|
2020-08-28 09:10:16 -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
|
|
|
|