summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/decimal_literal_representation/decimal_literal_representation.stderr
blob: 4510275c9a9a4a9ee30bb3f2cb66de62a022de62 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: integer literal has a better hexadecimal representation
  --> $DIR/decimal_literal_representation.rs:4:13
   |
LL |     let _ = 16777215;
   |             ^^^^^^^^ help: consider: `0x00FF_FFFF`
   |
   = note: `-D clippy::decimal-literal-representation` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::decimal_literal_representation)]`

error: aborting due to 1 previous error