]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/len_zero.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / len_zero.stderr
index 9a472b31e215fd4de0f1e4cd0f78dc0be73a0df4..6c71f1beeac67c27a89916538cbdfcc2af70d896 100644 (file)
@@ -22,13 +22,13 @@ error: length comparison to zero
   --> $DIR/len_zero.rs:83:8
    |
 LL |     if has_is_empty.len() != 0 {
-   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
+   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
 
 error: length comparison to zero
   --> $DIR/len_zero.rs:86:8
    |
 LL |     if has_is_empty.len() > 0 {
-   |        ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
+   |        ^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
 
 error: length comparison to one
   --> $DIR/len_zero.rs:89:8
@@ -40,7 +40,7 @@ error: length comparison to one
   --> $DIR/len_zero.rs:92:8
    |
 LL |     if has_is_empty.len() >= 1 {
-   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
+   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
 
 error: length comparison to zero
   --> $DIR/len_zero.rs:103:8
@@ -52,19 +52,19 @@ error: length comparison to zero
   --> $DIR/len_zero.rs:106:8
    |
 LL |     if 0 != has_is_empty.len() {
-   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
+   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
 
 error: length comparison to zero
   --> $DIR/len_zero.rs:109:8
    |
 LL |     if 0 < has_is_empty.len() {
-   |        ^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
+   |        ^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
 
 error: length comparison to one
   --> $DIR/len_zero.rs:112:8
    |
 LL |     if 1 <= has_is_empty.len() {
-   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
+   |        ^^^^^^^^^^^^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!has_is_empty.is_empty()`
 
 error: length comparison to one
   --> $DIR/len_zero.rs:115:8
@@ -82,7 +82,7 @@ error: length comparison to zero
   --> $DIR/len_zero.rs:142:8
    |
 LL |     if b.len() != 0 {}
-   |        ^^^^^^^^^^^^ help: using `is_empty` is clearer and more explicit: `!b.is_empty()`
+   |        ^^^^^^^^^^^^ help: using `!is_empty` is clearer and more explicit: `!b.is_empty()`
 
 error: aborting due to 14 previous errors