X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=tests%2Fui%2Ffloat_cmp_const.stderr;h=65c45648ab380885d9483e7b560eac484d0b2cbe;hb=b62319ce025b9a127f3d0f1217e3326418a38bb8;hp=d9b1d268505583852686cd642bcee26fa293a101;hpb=41e94dd072e8a0dbf060740e6baaf3dcfb07fbc9;p=rust.git diff --git a/tests/ui/float_cmp_const.stderr b/tests/ui/float_cmp_const.stderr index d9b1d268505..65c45648ab3 100644 --- a/tests/ui/float_cmp_const.stderr +++ b/tests/ui/float_cmp_const.stderr @@ -1,87 +1,67 @@ -error: strict comparison of f32 or f64 constant - --> $DIR/float_cmp_const.rs:27:5 +error: strict comparison of `f32` or `f64` constant + --> $DIR/float_cmp_const.rs:16:5 | -27 | 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: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin` = 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:27:5 - | -27 | 1f32 == ONE; - | ^^^^^^^^^^^ -error: strict comparison of f32 or f64 constant - --> $DIR/float_cmp_const.rs:28:5 - | -28 | 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:17:5 | -note: std::f32::EPSILON and std::f64::EPSILON are available. - --> $DIR/float_cmp_const.rs:28:5 +LL | TWO == ONE; + | ^^^^^^^^^^ help: consider comparing them within some margin of error: `(TWO - ONE).abs() < error_margin` | -28 | TWO == 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:29:5 +error: strict comparison of `f32` or `f64` constant + --> $DIR/float_cmp_const.rs:18:5 | -29 | TWO != ONE; - | ^^^^^^^^^^ help: consider comparing them within some error: `(TWO - ONE).abs() < error` +LL | TWO != ONE; + | ^^^^^^^^^^ help: consider comparing them within some margin of error: `(TWO - ONE).abs() > error_margin` | -note: std::f32::EPSILON and std::f64::EPSILON are available. - --> $DIR/float_cmp_const.rs:29:5 - | -29 | TWO != 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:30:5 - | -30 | ONE + ONE == TWO; - | ^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE + ONE - TWO).abs() < error` +error: strict comparison of `f32` or `f64` constant + --> $DIR/float_cmp_const.rs:19:5 | -note: std::f32::EPSILON and std::f64::EPSILON are available. - --> $DIR/float_cmp_const.rs:30:5 +LL | ONE + ONE == TWO; + | ^^^^^^^^^^^^^^^^ help: consider comparing them within some margin of error: `(ONE + ONE - TWO).abs() < error_margin` | -30 | ONE + ONE == TWO; - | ^^^^^^^^^^^^^^^^ + = 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:31:5 +error: strict comparison of `f32` or `f64` constant + --> $DIR/float_cmp_const.rs:21:5 | -31 | 1 as f32 == ONE; - | ^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(1 as f32 - 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:31:5 - | -31 | 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:34:5 - | -34 | v == ONE; - | ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() < error` +error: strict comparison of `f32` or `f64` constant + --> $DIR/float_cmp_const.rs:24:5 | -note: std::f32::EPSILON and std::f64::EPSILON are available. - --> $DIR/float_cmp_const.rs:34:5 +LL | v == ONE; + | ^^^^^^^^ help: consider comparing them within some margin of error: `(v - ONE).abs() < error_margin` | -34 | 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:35:5 +error: strict comparison of `f32` or `f64` constant + --> $DIR/float_cmp_const.rs:25:5 | -35 | v != ONE; - | ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() < error` +LL | v != ONE; + | ^^^^^^^^ help: consider comparing them within some margin of error: `(v - ONE).abs() > error_margin` + | + = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin` + +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:35:5 +LL | NON_ZERO_ARRAY == NON_ZERO_ARRAY2; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | -35 | v != ONE; - | ^^^^^^^^ + = note: `f32::EPSILON` and `f64::EPSILON` are available for the `error_margin` -error: aborting due to 7 previous errors +error: aborting due to 8 previous errors