]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui-toml/lint_decimal_readability/test.stderr
Auto merge of #82624 - ojeda:rwlock-example-deadlock, r=JohnTitor
[rust.git] / src / tools / clippy / tests / ui-toml / lint_decimal_readability / test.stderr
1 error: digits grouped inconsistently by underscores
2   --> $DIR/test.rs:18:18
3    |
4 LL |     let _fail1 = 100_200_300.123456789;
5    |                  ^^^^^^^^^^^^^^^^^^^^^ help: consider: `100_200_300.123_456_789`
6    |
7    = note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
8
9 error: aborting due to previous error
10