]> git.lizzy.rs Git - rust.git/blob - tests/ui/decimal_literal_representation.stderr
Update *.stderr files
[rust.git] / tests / ui / decimal_literal_representation.stderr
1 error: integer literal has a better hexadecimal representation
2   --> $DIR/decimal_literal_representation.rs:25:9
3    |
4 LL |         32_773,        // 0x8005
5    |         ^^^^^^ help: consider: `0x8005`
6    |
7    = note: `-D clippy::decimal-literal-representation` implied by `-D warnings`
8
9 error: integer literal has a better hexadecimal representation
10   --> $DIR/decimal_literal_representation.rs:26:9
11    |
12 LL |         65_280,        // 0xFF00
13    |         ^^^^^^ help: consider: `0xFF00`
14
15 error: integer literal has a better hexadecimal representation
16   --> $DIR/decimal_literal_representation.rs:27:9
17    |
18 LL |         2_131_750_927, // 0x7F0F_F00F
19    |         ^^^^^^^^^^^^^ help: consider: `0x7F0F_F00F`
20
21 error: integer literal has a better hexadecimal representation
22   --> $DIR/decimal_literal_representation.rs:28:9
23    |
24 LL |         2_147_483_647, // 0x7FFF_FFFF
25    |         ^^^^^^^^^^^^^ help: consider: `0x7FFF_FFFF`
26
27 error: integer literal has a better hexadecimal representation
28   --> $DIR/decimal_literal_representation.rs:29:9
29    |
30 LL |         4_042_322_160, // 0xF0F0_F0F0
31    |         ^^^^^^^^^^^^^ help: consider: `0xF0F0_F0F0`
32
33 error: aborting due to 5 previous errors
34