]> 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 12d7000dcfa0e1be8c186d0c41321e408c46124d..30bc2966619a7b91c7ef6d79c19a5b74e5b442ec 100644 (file)
@@ -1,43 +1,43 @@
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:10:5
+  --> $DIR/int_plus_one.rs:16:5
    |
-10 |     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
    |
-10 |     x > y;
+LL |     x > y;
    |     ^^^^^
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:11:5
+  --> $DIR/int_plus_one.rs:17:5
    |
-11 |     y + 1 <= x;
+LL |     y + 1 <= x;
    |     ^^^^^^^^^^
 help: change `>= y + 1` to `> y` as shown
    |
-11 |     y < x;
+LL |     y < x;
    |     ^^^^^
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:13:5
+  --> $DIR/int_plus_one.rs:19:5
    |
-13 |     x - 1 >= y;
+LL |     x - 1 >= y;
    |     ^^^^^^^^^^
 help: change `>= y + 1` to `> y` as shown
    |
-13 |     x > y;
+LL |     x > y;
    |     ^^^^^
 
 error: Unnecessary `>= y + 1` or `x - 1 >=`
-  --> $DIR/int_plus_one.rs:14:5
+  --> $DIR/int_plus_one.rs:20:5
    |
-14 |     y <= x - 1;
+LL |     y <= x - 1;
    |     ^^^^^^^^^^
 help: change `>= y + 1` to `> y` as shown
    |
-14 |     y < x;
+LL |     y < x;
    |     ^^^^^
 
 error: aborting due to 4 previous errors