error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:4:5
   |
LL |     (a - b) < f32::EPSILON
   |     -------^^^^^^^^^^^^^^^
   |     |
   |     help: add `.abs()`: `(a - b).abs()`
   |
   = note: `-D clippy::float-equality-without-abs` implied by `-D warnings`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:13:13
   |
LL |     let _ = (a - b) < f32::EPSILON;
   |             -------^^^^^^^^^^^^^^^
   |             |
   |             help: add `.abs()`: `(a - b).abs()`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:14:13
   |
LL |     let _ = a - b < f32::EPSILON;
   |             -----^^^^^^^^^^^^^^^
   |             |
   |             help: add `.abs()`: `(a - b).abs()`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:15:13
   |
LL |     let _ = a - b.abs() < f32::EPSILON;
   |             -----------^^^^^^^^^^^^^^^
   |             |
   |             help: add `.abs()`: `(a - b.abs()).abs()`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:16:13
   |
LL |     let _ = (a as f64 - b as f64) < f64::EPSILON;
   |             ---------------------^^^^^^^^^^^^^^^
   |             |
   |             help: add `.abs()`: `(a as f64 - b as f64).abs()`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:17:13
   |
LL |     let _ = 1.0 - 2.0 < f32::EPSILON;
   |             ---------^^^^^^^^^^^^^^^
   |             |
   |             help: add `.abs()`: `(1.0 - 2.0).abs()`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:19:13
   |
LL |     let _ = f32::EPSILON > (a - b);
   |             ^^^^^^^^^^^^^^^-------
   |                            |
   |                            help: add `.abs()`: `(a - b).abs()`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:20:13
   |
LL |     let _ = f32::EPSILON > a - b;
   |             ^^^^^^^^^^^^^^^-----
   |                            |
   |                            help: add `.abs()`: `(a - b).abs()`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:21:13
   |
LL |     let _ = f32::EPSILON > a - b.abs();
   |             ^^^^^^^^^^^^^^^-----------
   |                            |
   |                            help: add `.abs()`: `(a - b.abs()).abs()`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:22:13
   |
LL |     let _ = f64::EPSILON > (a as f64 - b as f64);
   |             ^^^^^^^^^^^^^^^---------------------
   |                            |
   |                            help: add `.abs()`: `(a as f64 - b as f64).abs()`

error: float equality check without `.abs()`
  --> $DIR/float_equality_without_abs.rs:23:13
   |
LL |     let _ = f32::EPSILON > 1.0 - 2.0;
   |             ^^^^^^^^^^^^^^^---------
   |                            |
   |                            help: add `.abs()`: `(1.0 - 2.0).abs()`

error: aborting due to 11 previous errors