mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
41 lines
1.4 KiB
Text
41 lines
1.4 KiB
Text
error: digits grouped inconsistently by underscores
|
|
--> $DIR/inconsistent_digit_grouping.rs:7:16
|
|
|
|
|
7 | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
|
|
| ^^^^^^^^
|
|
|
|
|
= note: `-D inconsistent-digit-grouping` implied by `-D warnings`
|
|
= help: consider: 123_456
|
|
|
|
error: digits grouped inconsistently by underscores
|
|
--> $DIR/inconsistent_digit_grouping.rs:7:26
|
|
|
|
|
7 | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
|
|
| ^^^^^^^^^^
|
|
|
|
|
= help: consider: 12_345_678
|
|
|
|
error: digits grouped inconsistently by underscores
|
|
--> $DIR/inconsistent_digit_grouping.rs:7:38
|
|
|
|
|
7 | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
|
|
| ^^^^^^^^
|
|
|
|
|
= help: consider: 1_234_567
|
|
|
|
error: digits grouped inconsistently by underscores
|
|
--> $DIR/inconsistent_digit_grouping.rs:7:48
|
|
|
|
|
7 | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider: 1_234.567_8_f32
|
|
|
|
error: digits grouped inconsistently by underscores
|
|
--> $DIR/inconsistent_digit_grouping.rs:7:64
|
|
|
|
|
7 | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
= help: consider: 1.234_567_8_f32
|
|
|