rust/tests/ui/decimal_literal_representation.stderr

47 lines
1.6 KiB
Text
Raw Normal View History

2018-01-23 15:29:31 +01:00
error: integer literal has a better hexadecimal representation
--> $DIR/decimal_literal_representation.rs:18:9
2018-01-23 15:29:31 +01:00
|
2018-12-27 16:57:55 +01:00
LL | 32_773, // 0x8005
| ^^^^^^ help: consider: `0x8005`
2018-01-23 15:29:31 +01:00
|
= note: `-D clippy::decimal-literal-representation` implied by `-D warnings`
2018-01-23 15:29:31 +01:00
error: integer literal has a better hexadecimal representation
--> $DIR/decimal_literal_representation.rs:19:9
2018-01-23 15:29:31 +01:00
|
2018-12-27 16:57:55 +01:00
LL | 65_280, // 0xFF00
| ^^^^^^ help: consider: `0xFF00`
2018-01-23 15:29:31 +01:00
error: integer literal has a better hexadecimal representation
--> $DIR/decimal_literal_representation.rs:20:9
2018-01-23 15:29:31 +01:00
|
2018-12-27 16:57:55 +01:00
LL | 2_131_750_927, // 0x7F0F_F00F
| ^^^^^^^^^^^^^ help: consider: `0x7F0F_F00F`
2018-01-23 15:29:31 +01:00
error: integer literal has a better hexadecimal representation
--> $DIR/decimal_literal_representation.rs:21:9
2018-01-23 15:29:31 +01:00
|
2018-12-27 16:57:55 +01:00
LL | 2_147_483_647, // 0x7FFF_FFFF
| ^^^^^^^^^^^^^ help: consider: `0x7FFF_FFFF`
2018-01-23 15:29:31 +01:00
error: integer literal has a better hexadecimal representation
--> $DIR/decimal_literal_representation.rs:23:9
2018-01-23 15:29:31 +01:00
|
2018-12-27 16:57:55 +01:00
LL | 4_042_322_160, // 0xF0F0_F0F0
| ^^^^^^^^^^^^^ help: consider: `0xF0F0_F0F0`
2018-01-23 15:29:31 +01:00
error: integer literal has a better hexadecimal representation
--> $DIR/decimal_literal_representation.rs:24:9
|
LL | 32_773usize, // 0x8005_usize
| ^^^^^^^^^^^ help: consider: `0x8005_usize`
error: integer literal has a better hexadecimal representation
--> $DIR/decimal_literal_representation.rs:25:9
|
LL | 2_131_750_927isize, // 0x7F0F_F00F_isize
| ^^^^^^^^^^^^^^^^^^ help: consider: `0x7F0F_F00F_isize`
error: aborting due to 7 previous errors
2018-01-23 15:29:31 +01:00