summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/lint_decimal_readability/test.stderr
blob: be505bda4792c757982e7c51566cbe6d672740d2 (plain)
1
2
3
4
5
6
7
8
9
10
error: digits grouped inconsistently by underscores
  --> $DIR/test.rs:19: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