]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/float_cmp.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / float_cmp.stderr
index df404a1eec3f00a2d9b4803a86ad78b097f7c4f9..bdbbccee71494db8261abdf1b1b33e8cdc2d4051 100644 (file)
@@ -1,38 +1,38 @@
 error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:49:5
+  --> $DIR/float_cmp.rs:69:5
    |
-49 |     ONE as f64 != 2.0;
+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: `-D clippy::float-cmp` implied by `-D warnings`
 note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:49:5
+  --> $DIR/float_cmp.rs:69:5
    |
-49 |     ONE as f64 != 2.0;
+LL |     ONE as f64 != 2.0;
    |     ^^^^^^^^^^^^^^^^^
 
 error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:54:5
+  --> $DIR/float_cmp.rs:74:5
    |
-54 |     x == 1.0;
+LL |     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
+  --> $DIR/float_cmp.rs:74:5
    |
-54 |     x == 1.0;
+LL |     x == 1.0;
    |     ^^^^^^^^
 
 error: strict comparison of f32 or f64
-  --> $DIR/float_cmp.rs:57:5
+  --> $DIR/float_cmp.rs:77:5
    |
-57 |     twice(x) != twice(ONE as f64);
+LL |     twice(x) != twice(ONE as f64);
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(twice(x) - twice(ONE as f64)).abs() < error`
    |
 note: std::f32::EPSILON and std::f64::EPSILON are available.
-  --> $DIR/float_cmp.rs:57:5
+  --> $DIR/float_cmp.rs:77:5
    |
-57 |     twice(x) != twice(ONE as f64);
+LL |     twice(x) != twice(ONE as f64);
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: aborting due to 3 previous errors