]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/int_plus_one.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / int_plus_one.stderr
index 4a81e911157b3579ef913e6289477651e44de405..29a6914761c9f92c319918bbee76403312ad2724 100644 (file)
@@ -1,44 +1,28 @@
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:16:5
+  --> $DIR/int_plus_one.rs:9:13
    |
-16 |     x >= y + 1;
-   |     ^^^^^^^^^^
+LL |     let _ = x >= y + 1;
+   |             ^^^^^^^^^^ help: change it to: `x > y`
    |
    = note: `-D clippy::int-plus-one` implied by `-D warnings`
-help: change `>= y + 1` to `> y` as shown
-   |
-16 |     x > y;
-   |     ^^^^^
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:17:5
-   |
-17 |     y + 1 <= x;
-   |     ^^^^^^^^^^
-help: change `>= y + 1` to `> y` as shown
+  --> $DIR/int_plus_one.rs:10:13
    |
-17 |     y < x;
-   |     ^^^^^
+LL |     let _ = y + 1 <= x;
+   |             ^^^^^^^^^^ help: change it to: `y < x`
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:19:5
+  --> $DIR/int_plus_one.rs:12:13
    |
-19 |     x - 1 >= y;
-   |     ^^^^^^^^^^
-help: change `>= y + 1` to `> y` as shown
-   |
-19 |     x > y;
-   |     ^^^^^
+LL |     let _ = x - 1 >= y;
+   |             ^^^^^^^^^^ help: change it to: `x > y`
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:20:5
-   |
-20 |     y <= x - 1;
-   |     ^^^^^^^^^^
-help: change `>= y + 1` to `> y` as shown
+  --> $DIR/int_plus_one.rs:13:13
    |
-20 |     y < x;
-   |     ^^^^^
+LL |     let _ = y <= x - 1;
+   |             ^^^^^^^^^^ help: change it to: `y < x`
 
 error: aborting due to 4 previous errors