]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/int_plus_one.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / int_plus_one.stderr
index 12d7000dcfa0e1be8c186d0c41321e408c46124d..29a6914761c9f92c319918bbee76403312ad2724 100644 (file)
@@ -1,44 +1,28 @@
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:10:5
+  --> $DIR/int_plus_one.rs:9:13
    |
-10 |     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
-   |
-10 |     x > y;
-   |     ^^^^^
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:11:5
-   |
-11 |     y + 1 <= x;
-   |     ^^^^^^^^^^
-help: change `>= y + 1` to `> y` as shown
+  --> $DIR/int_plus_one.rs:10:13
    |
-11 |     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:13:5
+  --> $DIR/int_plus_one.rs:12:13
    |
-13 |     x - 1 >= y;
-   |     ^^^^^^^^^^
-help: change `>= y + 1` to `> y` as shown
-   |
-13 |     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:14:5
-   |
-14 |     y <= x - 1;
-   |     ^^^^^^^^^^
-help: change `>= y + 1` to `> y` as shown
+  --> $DIR/int_plus_one.rs:13:13
    |
-14 |     y < x;
-   |     ^^^^^
+LL |     let _ = y <= x - 1;
+   |             ^^^^^^^^^^ help: change it to: `y < x`
 
 error: aborting due to 4 previous errors