error: float has excessive precision --> tests/ui/excessive_precision.rs:20:26 | LL | const BAD32_1: f32 = 0.123_456_789_f32; | ^^^^^^^^^^^^^^^^^ | = note: `-D clippy::excessive-precision` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::excessive_precision)]` help: consider changing the type or truncating it to | LL - const BAD32_1: f32 = 0.123_456_789_f32; LL + const BAD32_1: f32 = 0.123_456_79_f32; | error: float has excessive precision --> tests/ui/excessive_precision.rs:22:26 | LL | const BAD32_2: f32 = 0.123_456_789; | ^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - const BAD32_2: f32 = 0.123_456_789; LL + const BAD32_2: f32 = 0.123_456_79; | error: float has excessive precision --> tests/ui/excessive_precision.rs:24:26 | LL | const BAD32_3: f32 = 0.100_000_000_000_1; | ^^^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - const BAD32_3: f32 = 0.100_000_000_000_1; LL + const BAD32_3: f32 = 0.1; | error: float has excessive precision --> tests/ui/excessive_precision.rs:26:29 | LL | const BAD32_EDGE: f32 = 1.000_000_9; | ^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - const BAD32_EDGE: f32 = 1.000_000_9; LL + const BAD32_EDGE: f32 = 1.000_001; | error: float has excessive precision --> tests/ui/excessive_precision.rs:31:26 | LL | const BAD64_3: f64 = 0.100_000_000_000_000_000_1; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - const BAD64_3: f64 = 0.100_000_000_000_000_000_1; LL + const BAD64_3: f64 = 0.1; | error: float has excessive precision --> tests/ui/excessive_precision.rs:35:22 | LL | println!("{:?}", 8.888_888_888_888_888_888_888); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - println!("{:?}", 8.888_888_888_888_888_888_888); LL + println!("{:?}", 8.888_888_888_888_89); | error: float has excessive precision --> tests/ui/excessive_precision.rs:47:22 | LL | let bad32: f32 = 1.123_456_789; | ^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - let bad32: f32 = 1.123_456_789; LL + let bad32: f32 = 1.123_456_8; | error: float has excessive precision --> tests/ui/excessive_precision.rs:49:26 | LL | let bad32_suf: f32 = 1.123_456_789_f32; | ^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - let bad32_suf: f32 = 1.123_456_789_f32; LL + let bad32_suf: f32 = 1.123_456_8_f32; | error: float has excessive precision --> tests/ui/excessive_precision.rs:51:21 | LL | let bad32_inf = 1.123_456_789_f32; | ^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - let bad32_inf = 1.123_456_789_f32; LL + let bad32_inf = 1.123_456_8_f32; | error: float has excessive precision --> tests/ui/excessive_precision.rs:62:36 | LL | let bad_vec32: Vec = vec![0.123_456_789]; | ^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - let bad_vec32: Vec = vec![0.123_456_789]; LL + let bad_vec32: Vec = vec![0.123_456_79]; | error: float has excessive precision --> tests/ui/excessive_precision.rs:64:36 | LL | let bad_vec64: Vec = vec![0.123_456_789_123_456_789]; | ^^^^^^^^^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - let bad_vec64: Vec = vec![0.123_456_789_123_456_789]; LL + let bad_vec64: Vec = vec![0.123_456_789_123_456_78]; | error: float has excessive precision --> tests/ui/excessive_precision.rs:69:24 | LL | let bad_e32: f32 = 1.123_456_788_888e-10; | ^^^^^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - let bad_e32: f32 = 1.123_456_788_888e-10; LL + let bad_e32: f32 = 1.123_456_8e-10; | error: float has excessive precision --> tests/ui/excessive_precision.rs:73:27 | LL | let bad_bige32: f32 = 1.123_456_788_888E-10; | ^^^^^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - let bad_bige32: f32 = 1.123_456_788_888E-10; LL + let bad_bige32: f32 = 1.123_456_8E-10; | error: float has excessive precision --> tests/ui/excessive_precision.rs:86:13 | LL | let _ = 2.225_073_858_507_201_1e-308_f64; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - let _ = 2.225_073_858_507_201_1e-308_f64; LL + let _ = 2.225_073_858_507_201e-308_f64; | error: float has excessive precision --> tests/ui/excessive_precision.rs:90:13 | LL | let _ = 1.000_000_000_000_001e-324_f64; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - let _ = 1.000_000_000_000_001e-324_f64; LL + let _ = 0_f64; | error: float has excessive precision --> tests/ui/excessive_precision.rs:101:20 | LL | const _: f64 = 3.0000000000000000e+00; | ^^^^^^^^^^^^^^^^^^^^^^ | help: consider changing the type or truncating it to | LL - const _: f64 = 3.0000000000000000e+00; LL + const _: f64 = 3.0; | error: aborting due to 16 previous errors