]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/float_cmp_const.stderr
Auto merge of #6814 - hyd-dev:issue-6486, r=flip1995
[rust.git] / tests / ui / float_cmp_const.stderr
index f8933938ed8bf2030fe01050f1c41c0ff7d3ddbc..d8182cf855b082190869047a6c6904f27f735917 100644 (file)
-error: strict comparison of f32 or f64 constant
+error: strict comparison of `f32` or `f64` constant
   --> $DIR/float_cmp_const.rs:16:5
    |
-16 |     1f32 == ONE;
-   |     ^^^^^^^^^^^ help: consider comparing them within some error: `(1f32 - ONE).abs() < error`
+LL |     1f32 == ONE;
+   |     ^^^^^^^^^^^ help: consider comparing them within some margin of error: `(1f32 - ONE).abs() < error_margin`
    |
-   = note: `-D float-cmp-const` implied by `-D warnings`
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:16:5
-   |
-16 |     1f32 == ONE;
-   |     ^^^^^^^^^^^
+   = note: `-D clippy::float-cmp-const` implied by `-D warnings`
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
 
-error: strict comparison of f32 or f64 constant
+error: strict comparison of `f32` or `f64` constant
   --> $DIR/float_cmp_const.rs:17:5
    |
-17 |     TWO == ONE;
-   |     ^^^^^^^^^^ help: consider comparing them within some error: `(TWO - ONE).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:17:5
+LL |     TWO == ONE;
+   |     ^^^^^^^^^^ help: consider comparing them within some margin of error: `(TWO - ONE).abs() < error_margin`
    |
-17 |     TWO == ONE;
-   |     ^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
 
-error: strict comparison of f32 or f64 constant
+error: strict comparison of `f32` or `f64` constant
   --> $DIR/float_cmp_const.rs:18:5
    |
-18 |     TWO != ONE;
-   |     ^^^^^^^^^^ help: consider comparing them within some error: `(TWO - ONE).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:18:5
+LL |     TWO != ONE;
+   |     ^^^^^^^^^^ help: consider comparing them within some margin of error: `(TWO - ONE).abs() > error_margin`
    |
-18 |     TWO != ONE;
-   |     ^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
 
-error: strict comparison of f32 or f64 constant
+error: strict comparison of `f32` or `f64` constant
   --> $DIR/float_cmp_const.rs:19:5
    |
-19 |     ONE + ONE == TWO;
-   |     ^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE + ONE - TWO).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:19:5
-   |
-19 |     ONE + ONE == TWO;
-   |     ^^^^^^^^^^^^^^^^
-
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:20:5
-   |
-20 |     1 as f32 == ONE;
-   |     ^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(1 as f32 - ONE).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:20:5
+LL |     ONE + ONE == TWO;
+   |     ^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(ONE + ONE - TWO).abs() < error_margin`
    |
-20 |     1 as f32 == ONE;
-   |     ^^^^^^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
 
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:23:5
+error: strict comparison of `f32` or `f64` constant
+  --> $DIR/float_cmp_const.rs:21:5
    |
-23 |     v == ONE;
-   |     ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() < error`
+LL |     x as f32 == ONE;
+   |     ^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(x as f32 - ONE).abs() < error_margin`
    |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:23:5
-   |
-23 |     v == ONE;
-   |     ^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
 
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:24:5
-   |
-24 |     v != ONE;
-   |     ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
+error: strict comparison of `f32` or `f64` constant
   --> $DIR/float_cmp_const.rs:24:5
    |
-24 |     v != ONE;
-   |     ^^^^^^^^
-
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp_const.rs:34:5
-   |
-34 |     v == w;
-   |     ^^^^^^ help: consider comparing them within some error: `(v - w).abs() < error`
+LL |     v == ONE;
+   |     ^^^^^^^^ help: consider comparing them within some margin of error: `(v - ONE).abs() < error_margin`
    |
-   = note: `-D float-cmp` implied by `-D warnings`
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:34:5
-   |
-34 |     v == w;
-   |     ^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
 
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp_const.rs:35:5
-   |
-35 |     v != w;
-   |     ^^^^^^ help: consider comparing them within some error: `(v - w).abs() < error`
+error: strict comparison of `f32` or `f64` constant
+  --> $DIR/float_cmp_const.rs:25:5
    |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:35:5
+LL |     v != ONE;
+   |     ^^^^^^^^ help: consider comparing them within some margin of error: `(v - ONE).abs() > error_margin`
    |
-35 |     v != w;
-   |     ^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
 
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp_const.rs:36:5
-   |
-36 |     v == 1.0;
-   |     ^^^^^^^^ help: consider comparing them within some error: `(v - 1.0).abs() < error`
+error: strict comparison of `f32` or `f64` constant arrays
+  --> $DIR/float_cmp_const.rs:57:5
    |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:36:5
+LL |     NON_ZERO_ARRAY == NON_ZERO_ARRAY2;
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
-36 |     v == 1.0;
-   |     ^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin`
 
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp_const.rs:37:5
-   |
-37 |     v != 1.0;
-   |     ^^^^^^^^ help: consider comparing them within some error: `(v - 1.0).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:37:5
-   |
-37 |     v != 1.0;
-   |     ^^^^^^^^
+error: aborting due to 8 previous errors