2018-04-12 19:42:57 -05:00
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:14:26
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | const BAD32_1: f32 = 0.123_456_789_f32;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::excessive-precision` implied by `-D warnings`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:15:26
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | const BAD32_2: f32 = 0.123_456_789;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:16:26
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | const BAD32_3: f32 = 0.100_000_000_000_1;
|
2018-04-12 19:42:57 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.1`
|
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:17:29
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | const BAD32_EDGE: f32 = 1.000_000_9;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.000_001`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:19:26
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | const BAD64_1: f64 = 0.123_456_789_012_345_67f64;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:20:26
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | const BAD64_2: f64 = 0.123_456_789_012_345_67;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66`
|
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:21:26
|
2018-05-02 13:40:52 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | const BAD64_3: f64 = 0.100_000_000_000_000_000_1;
|
2018-04-12 19:42:57 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.1`
|
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:24:22
|
2018-05-02 13:40:52 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | println!("{:?}", 8.888_888_888_888_888_888_888);
|
2018-07-22 17:19:07 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `8.888_888_888_888_89`
|
2018-05-02 13:40:52 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:35:22
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad32: f32 = 1.123_456_789;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:36:26
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad32_suf: f32 = 1.123_456_789_f32;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:37:21
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad32_inf = 1.123_456_789_f32;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:39:22
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad64: f64 = 0.123_456_789_012_345_67;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:40:26
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad64_suf: f64 = 0.123_456_789_012_345_67f64;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:41:21
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad64_inf = 0.123_456_789_012_345_67;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_012_345_66`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:47:36
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad_vec32: Vec<f32> = vec![0.123_456_789];
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_79`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:48:36
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad_vec64: Vec<f64> = vec![0.123_456_789_123_456_789];
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `0.123_456_789_123_456_78`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:52:24
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad_e32: f32 = 1.123_456_788_888e-10;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8e-10`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
|
|
error: float has excessive precision
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/excessive_precision.rs:55:27
|
2018-04-12 19:42:57 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let bad_bige32: f32 = 1.123_456_788_888E-10;
|
2018-05-02 13:40:52 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider changing the type or truncating it to: `1.123_456_8E-10`
|
2018-04-12 19:42:57 -05:00
|
|
|
|
2018-05-02 13:40:52 -05:00
|
|
|
error: aborting due to 18 previous errors
|
2018-04-12 19:42:57 -05:00
|
|
|
|