2020-06-09 09:36:01 -05:00
|
|
|
error: length comparison to zero
|
2020-08-24 16:28:01 -05:00
|
|
|
--> $DIR/len_zero_ranges.rs:11: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`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|