mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-19 19:28:18 +00:00
10 lines
335 B
Text
10 lines
335 B
Text
error: digits grouped inconsistently by underscores
|
|
--> $DIR/test.rs:18:18
|
|
|
|
|
LL | let _fail1 = 100_200_300.123456789;
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider: `100_200_300.123_456_789`
|
|
|
|
|
= note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
|
|
|
|
error: aborting due to previous error
|
|
|