]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/float_cmp.stderr
iterate List by value
[rust.git] / tests / ui / float_cmp.stderr
index a764403d0397b40fc1aba4d76e0c0b993858d052..2d454e8e70de5ab173e7a0d511f1872f896cdac8 100644 (file)
@@ -1,99 +1,51 @@
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:43:5
+error: strict comparison of `f32` or `f64`
+  --> $DIR/float_cmp.rs:65:5
    |
-43 |     ONE == 1f32;
-   |     ^^^^^^^^^^^ help: consider comparing them within some error: `(ONE - 1f32).abs() < error`
+LL |     ONE as f64 != 2.0;
+   |     ^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE as f64 - 2.0).abs() > error`
    |
-   = note: `-D float-cmp` implied by `-D warnings`
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:43:5
-   |
-43 |     ONE == 1f32;
-   |     ^^^^^^^^^^^
-
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:44:5
-   |
-44 |     ONE == 1.0 + 0.0;
-   |     ^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE - (1.0 + 0.0)).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:44:5
-   |
-44 |     ONE == 1.0 + 0.0;
-   |     ^^^^^^^^^^^^^^^^
-
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:45:5
-   |
-45 |     ONE + ONE == ZERO + ONE + ONE;
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE + ONE - (ZERO + ONE + ONE)).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:45:5
-   |
-45 |     ONE + ONE == ZERO + ONE + ONE;
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+   = note: `-D clippy::float-cmp` implied by `-D warnings`
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:46:5
+error: strict comparison of `f32` or `f64`
+  --> $DIR/float_cmp.rs:70:5
    |
-46 |     ONE != 2.0;
-   |     ^^^^^^^^^^ help: consider comparing them within some error: `(ONE - 2.0).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:46:5
+LL |     x == 1.0;
+   |     ^^^^^^^^ help: consider comparing them within some error: `(x - 1.0).abs() < error`
    |
-46 |     ONE != 2.0;
-   |     ^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:48:5
-   |
-48 |     twice(ONE) != ONE;
-   |     ^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(twice(ONE) - ONE).abs() < error`
+error: strict comparison of `f32` or `f64`
+  --> $DIR/float_cmp.rs:73:5
    |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:48:5
+LL |     twice(x) != twice(ONE as f64);
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(twice(x) - twice(ONE as f64)).abs() > error`
    |
-48 |     twice(ONE) != ONE;
-   |     ^^^^^^^^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:49:5
+error: strict comparison of `f32` or `f64`
+  --> $DIR/float_cmp.rs:93:5
    |
-49 |     ONE as f64 != 2.0;
-   |     ^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE as f64 - 2.0).abs() < error`
+LL |     NON_ZERO_ARRAY[i] == NON_ZERO_ARRAY[j];
+   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(NON_ZERO_ARRAY[i] - NON_ZERO_ARRAY[j]).abs() < error`
    |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:49:5
-   |
-49 |     ONE as f64 != 2.0;
-   |     ^^^^^^^^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:54:5
+error: strict comparison of `f32` or `f64` arrays
+  --> $DIR/float_cmp.rs:98:5
    |
-54 |     x == 1.0;
-   |     ^^^^^^^^ help: consider comparing them within some error: `(x - 1.0).abs() < error`
-   |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:54:5
-   |
-54 |     x == 1.0;
+LL |     a1 == a2;
    |     ^^^^^^^^
-
-error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:57:5
    |
-57 |     twice(x) != twice(ONE as f64);
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(twice(x) - twice(ONE as f64)).abs() < error`
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
+
+error: strict comparison of `f32` or `f64`
+  --> $DIR/float_cmp.rs:99:5
    |
-note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:57:5
+LL |     a1[0] == a2[0];
+   |     ^^^^^^^^^^^^^^ help: consider comparing them within some error: `(a1[0] - a2[0]).abs() < error`
    |
-57 |     twice(x) != twice(ONE as f64);
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+   = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
 
-error: aborting due to 8 previous errors
+error: aborting due to 6 previous errors