Auto merge of #5960 - flip1995:rustup, r=flip1995

Rustup

r? @ghost

changelog: none
This commit is contained in:
bors 2020-08-25 16:11:17 +00:00
commit 5ef345a853
3 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@
#![feature(range_is_empty)]
#![warn(clippy::len_zero)]
#![allow(unused)]
#![allow(stable_features)] // TODO: https://github.com/rust-lang/rust-clippy/issues/5956
mod issue_3807 {
// With the feature enabled, `is_empty` should be suggested

View File

@ -3,6 +3,7 @@
#![feature(range_is_empty)]
#![warn(clippy::len_zero)]
#![allow(unused)]
#![allow(stable_features)] // TODO: https://github.com/rust-lang/rust-clippy/issues/5956
mod issue_3807 {
// With the feature enabled, `is_empty` should be suggested

View File

@ -1,5 +1,5 @@
error: length comparison to zero
--> $DIR/len_zero_ranges.rs:10:17
--> $DIR/len_zero_ranges.rs:11:17
|
LL | let _ = (0..42).len() == 0;
| ^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `(0..42).is_empty()`