error: Unnecessary `>= y + 1` or `x - 1 >=`
  --> $DIR/int_plus_one.rs:16:5
   |
LL |     x >= y + 1;
   |     ^^^^^^^^^^
   |
   = note: `-D clippy::int-plus-one` implied by `-D warnings`
help: change `>= y + 1` to `> y` as shown
   |
LL |     x > y;
   |     ^^^^^

error: Unnecessary `>= y + 1` or `x - 1 >=`
  --> $DIR/int_plus_one.rs:17:5
   |
LL |     y + 1 <= x;
   |     ^^^^^^^^^^
help: change `>= y + 1` to `> y` as shown
   |
LL |     y < x;
   |     ^^^^^

error: Unnecessary `>= y + 1` or `x - 1 >=`
  --> $DIR/int_plus_one.rs:19:5
   |
LL |     x - 1 >= y;
   |     ^^^^^^^^^^
help: change `>= y + 1` to `> y` as shown
   |
LL |     x > y;
   |     ^^^^^

error: Unnecessary `>= y + 1` or `x - 1 >=`
  --> $DIR/int_plus_one.rs:20:5
   |
LL |     y <= x - 1;
   |     ^^^^^^^^^^
help: change `>= y + 1` to `> y` as shown
   |
LL |     y < x;
   |     ^^^^^

error: aborting due to 4 previous errors