]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/len_zero_ranges.stderr
Rollup merge of #76057 - matklad:remove-retokenize, r=petrochenkov
[rust.git] / src / tools / clippy / tests / ui / len_zero_ranges.stderr
1 error: length comparison to zero
2   --> $DIR/len_zero_ranges.rs:9:17
3    |
4 LL |         let _ = (0..42).len() == 0;
5    |                 ^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(0..42).is_empty()`
6    |
7    = note: `-D clippy::len-zero` implied by `-D warnings`
8
9 error: length comparison to zero
10   --> $DIR/len_zero_ranges.rs:13:17
11    |
12 LL |         let _ = (0_u8..=42).len() == 0;
13    |                 ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(0_u8..=42).is_empty()`
14
15 error: aborting due to 2 previous errors
16