|
1 | 1 | error: integer literal has a better hexadecimal representation |
2 | | - --> $DIR/decimal_literal_representation.rs:16:9 |
| 2 | + --> $DIR/decimal_literal_representation.rs:18:9 |
3 | 3 | | |
4 | 4 | LL | 32_773, // 0x8005 |
5 | 5 | | ^^^^^^ help: consider: `0x8005` |
6 | 6 | | |
7 | 7 | = note: `-D clippy::decimal-literal-representation` implied by `-D warnings` |
8 | 8 |
|
9 | 9 | error: integer literal has a better hexadecimal representation |
10 | | - --> $DIR/decimal_literal_representation.rs:17:9 |
| 10 | + --> $DIR/decimal_literal_representation.rs:19:9 |
11 | 11 | | |
12 | 12 | LL | 65_280, // 0xFF00 |
13 | 13 | | ^^^^^^ help: consider: `0xFF00` |
14 | 14 |
|
15 | 15 | error: integer literal has a better hexadecimal representation |
16 | | - --> $DIR/decimal_literal_representation.rs:18:9 |
| 16 | + --> $DIR/decimal_literal_representation.rs:20:9 |
17 | 17 | | |
18 | 18 | LL | 2_131_750_927, // 0x7F0F_F00F |
19 | 19 | | ^^^^^^^^^^^^^ help: consider: `0x7F0F_F00F` |
20 | 20 |
|
21 | 21 | error: integer literal has a better hexadecimal representation |
22 | | - --> $DIR/decimal_literal_representation.rs:19:9 |
| 22 | + --> $DIR/decimal_literal_representation.rs:21:9 |
23 | 23 | | |
24 | 24 | LL | 2_147_483_647, // 0x7FFF_FFFF |
25 | 25 | | ^^^^^^^^^^^^^ help: consider: `0x7FFF_FFFF` |
26 | 26 |
|
27 | 27 | error: integer literal has a better hexadecimal representation |
28 | | - --> $DIR/decimal_literal_representation.rs:20:9 |
| 28 | + --> $DIR/decimal_literal_representation.rs:23:9 |
29 | 29 | | |
30 | 30 | LL | 4_042_322_160, // 0xF0F0_F0F0 |
31 | 31 | | ^^^^^^^^^^^^^ help: consider: `0xF0F0_F0F0` |
|
0 commit comments