]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/float_cmp_const.stderr
iterate List by value
[rust.git] / tests / ui / float_cmp_const.stderr
index 14083979511dbafc640095397b1f020fb842a1e5..19dc4a284b726744b219bd4aa9f2d55e40fa130a 100644 (file)
@@ -1,87 +1,67 @@
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:17:5
+error: strict comparison of `f32` or `f64` constant
+  --> $DIR/float_cmp_const.rs:20:5
    |
-17 |     1f32 == ONE;
+LL |     1f32 == ONE;
    |     ^^^^^^^^^^^ help: consider comparing them within some error: `(1f32 - ONE).abs() < error`
    |
    = note: `-D clippy::float-cmp-const` implied by `-D warnings`
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:17:5
-   |
-17 |     1f32 == ONE;
-   |     ^^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:18:5
+error: strict comparison of `f32` or `f64` constant
+  --> $DIR/float_cmp_const.rs:21:5
    |
-18 |     TWO == ONE;
+LL |     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
-   |
-18 |     TWO == ONE;
-   |     ^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:19:5
-   |
-19 |     TWO != ONE;
-   |     ^^^^^^^^^^ help: consider comparing them within some error: `(TWO - ONE).abs() < error`
+error: strict comparison of `f32` or `f64` constant
+  --> $DIR/float_cmp_const.rs:22:5
    |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:19:5
+LL |     TWO != ONE;
+   |     ^^^^^^^^^^ help: consider comparing them within some error: `(TWO - ONE).abs() > error`
    |
-19 |     TWO != ONE;
-   |     ^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:20:5
+error: strict comparison of `f32` or `f64` constant
+  --> $DIR/float_cmp_const.rs:23:5
    |
-20 |     ONE + ONE == TWO;
+LL |     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:20:5
-   |
-20 |     ONE + ONE == TWO;
-   |     ^^^^^^^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:21:5
-   |
-21 |     1 as f32 == ONE;
-   |     ^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(1 as f32 - ONE).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:21:5
+LL |     x as f32 == ONE;
+   |     ^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(x as f32 - ONE).abs() < error`
    |
-21 |     1 as f32 == ONE;
-   |     ^^^^^^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:24:5
+error: strict comparison of `f32` or `f64` constant
+  --> $DIR/float_cmp_const.rs:28:5
    |
-24 |     v == ONE;
+LL |     v == ONE;
    |     ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() < error`
    |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:24:5
-   |
-24 |     v == ONE;
-   |     ^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64 constant
-  --> $DIR/float_cmp_const.rs:25:5
+error: strict comparison of `f32` or `f64` constant
+  --> $DIR/float_cmp_const.rs:29:5
    |
-25 |     v != ONE;
-   |     ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() < error`
+LL |     v != ONE;
+   |     ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() > error`
    |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp_const.rs:25:5
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
+
+error: strict comparison of `f32` or `f64` constant arrays
+  --> $DIR/float_cmp_const.rs:61:5
+   |
+LL |     NON_ZERO_ARRAY == NON_ZERO_ARRAY2;
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
-25 |     v != ONE;
-   |     ^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: aborting due to 7 previous errors
+error: aborting due to 8 previous errors