rust/tests/ui/float_cmp_const.stderr

68 lines
2.4 KiB
Plaintext
Raw Normal View History

2020-01-06 14:36:33 +08:00
error: strict comparison of `f32` or `f64` constant
2019-09-25 19:49:38 +08:00
--> $DIR/float_cmp_const.rs:20:5
|
2018-12-27 23:57:55 +08:00
LL | 1f32 == ONE;
| ^^^^^^^^^^^ help: consider comparing them within some error: `(1f32 - ONE).abs() < error`
|
= note: `-D clippy::float-cmp-const` implied by `-D warnings`
2020-04-06 21:29:54 +08:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
2020-01-06 14:36:33 +08:00
error: strict comparison of `f32` or `f64` constant
2019-09-25 19:49:38 +08:00
--> $DIR/float_cmp_const.rs:21:5
|
2018-12-27 23:57:55 +08:00
LL | TWO == ONE;
| ^^^^^^^^^^ help: consider comparing them within some error: `(TWO - ONE).abs() < error`
|
2020-04-06 21:29:54 +08:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
2020-01-06 14:36:33 +08:00
error: strict comparison of `f32` or `f64` constant
2019-09-25 19:49:38 +08:00
--> $DIR/float_cmp_const.rs:22:5
|
2018-12-27 23:57:55 +08:00
LL | TWO != ONE;
| ^^^^^^^^^^ help: consider comparing them within some error: `(TWO - ONE).abs() > error`
|
2020-04-06 21:29:54 +08:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
2020-01-06 14:36:33 +08:00
error: strict comparison of `f32` or `f64` constant
2019-09-25 19:49:38 +08:00
--> $DIR/float_cmp_const.rs:23:5
|
2018-12-27 23:57:55 +08:00
LL | ONE + ONE == TWO;
| ^^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(ONE + ONE - TWO).abs() < error`
|
2020-04-06 21:29:54 +08:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
2020-01-06 14:36:33 +08:00
error: strict comparison of `f32` or `f64` constant
2019-09-25 19:49:38 +08:00
--> $DIR/float_cmp_const.rs:25:5
|
LL | x as f32 == ONE;
| ^^^^^^^^^^^^^^^ help: consider comparing them within some error: `(x as f32 - ONE).abs() < error`
|
2020-04-06 21:29:54 +08:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
2020-01-06 14:36:33 +08:00
error: strict comparison of `f32` or `f64` constant
2019-09-25 19:49:38 +08:00
--> $DIR/float_cmp_const.rs:28:5
|
2018-12-27 23:57:55 +08:00
LL | v == ONE;
| ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() < error`
|
2020-04-06 21:29:54 +08:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
2020-01-06 14:36:33 +08:00
error: strict comparison of `f32` or `f64` constant
2019-09-25 19:49:38 +08:00
--> $DIR/float_cmp_const.rs:29:5
|
2018-12-27 23:57:55 +08:00
LL | v != ONE;
| ^^^^^^^^ help: consider comparing them within some error: `(v - ONE).abs() > error`
|
2020-04-06 21:29:54 +08:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
error: strict comparison of `f32` or `f64` constant arrays
2020-03-20 18:54:04 +08:00
--> $DIR/float_cmp_const.rs:61:5
|
LL | NON_ZERO_ARRAY == NON_ZERO_ARRAY2;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2020-04-06 21:29:54 +08:00
= note: `f32::EPSILON` and `f64::EPSILON` are available for the `error`
2020-03-20 18:54:04 +08:00
error: aborting due to 8 previous errors
2018-01-17 00:06:27 +08:00