]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/int_plus_one.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / int_plus_one.stderr
index 4a81e911157b3579ef913e6289477651e44de405..30bc2966619a7b91c7ef6d79c19a5b74e5b442ec 100644 (file)
@@ -1,43 +1,43 @@
 error: Unnecessary `>= y + 1` or `x - 1 >=`
   --> $DIR/int_plus_one.rs:16:5
    |
-16 |     x >= y + 1;
+LL |     x >= y + 1;
    |     ^^^^^^^^^^
    |
    = note: `-D clippy::int-plus-one` implied by `-D warnings`
 help: change `>= y + 1` to `> y` as shown
    |
-16 |     x > y;
+LL |     x > y;
    |     ^^^^^
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
   --> $DIR/int_plus_one.rs:17:5
    |
-17 |     y + 1 <= x;
+LL |     y + 1 <= x;
    |     ^^^^^^^^^^
 help: change `>= y + 1` to `> y` as shown
    |
-17 |     y < x;
+LL |     y < x;
    |     ^^^^^
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
   --> $DIR/int_plus_one.rs:19:5
    |
-19 |     x - 1 >= y;
+LL |     x - 1 >= y;
    |     ^^^^^^^^^^
 help: change `>= y + 1` to `> y` as shown
    |
-19 |     x > y;
+LL |     x > y;
    |     ^^^^^
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
   --> $DIR/int_plus_one.rs:20:5
    |
-20 |     y <= x - 1;
+LL |     y <= x - 1;
    |     ^^^^^^^^^^
 help: change `>= y + 1` to `> y` as shown
    |
-20 |     y < x;
+LL |     y < x;
    |     ^^^^^
 
 error: aborting due to 4 previous errors