]> git.proxmox.com Git - rustc.git/blame - src/tools/clippy/tests/ui/decimal_literal_representation.stderr
Update upstream source from tag 'upstream/1.52.1+dfsg1'
[rustc.git] / src / tools / clippy / tests / ui / decimal_literal_representation.stderr
CommitLineData
f20569fa
XL
1error: integer literal has a better hexadecimal representation
2 --> $DIR/decimal_literal_representation.rs:18:9
3 |
4LL | 32_773, // 0x8005
5 | ^^^^^^ help: consider: `0x8005`
6 |
7 = note: `-D clippy::decimal-literal-representation` implied by `-D warnings`
8
9error: integer literal has a better hexadecimal representation
10 --> $DIR/decimal_literal_representation.rs:19:9
11 |
12LL | 65_280, // 0xFF00
13 | ^^^^^^ help: consider: `0xFF00`
14
15error: integer literal has a better hexadecimal representation
16 --> $DIR/decimal_literal_representation.rs:20:9
17 |
18LL | 2_131_750_927, // 0x7F0F_F00F
19 | ^^^^^^^^^^^^^ help: consider: `0x7F0F_F00F`
20
21error: integer literal has a better hexadecimal representation
22 --> $DIR/decimal_literal_representation.rs:21:9
23 |
24LL | 2_147_483_647, // 0x7FFF_FFFF
25 | ^^^^^^^^^^^^^ help: consider: `0x7FFF_FFFF`
26
27error: integer literal has a better hexadecimal representation
28 --> $DIR/decimal_literal_representation.rs:23:9
29 |
30LL | 4_042_322_160, // 0xF0F0_F0F0
31 | ^^^^^^^^^^^^^ help: consider: `0xF0F0_F0F0`
32
33error: integer literal has a better hexadecimal representation
34 --> $DIR/decimal_literal_representation.rs:24:9
35 |
36LL | 32_773usize, // 0x8005_usize
37 | ^^^^^^^^^^^ help: consider: `0x8005_usize`
38
39error: integer literal has a better hexadecimal representation
40 --> $DIR/decimal_literal_representation.rs:25:9
41 |
42LL | 2_131_750_927isize, // 0x7F0F_F00F_isize
43 | ^^^^^^^^^^^^^^^^^^ help: consider: `0x7F0F_F00F_isize`
44
45error: aborting due to 7 previous errors
46