mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
48 lines
1.4 KiB
Text
48 lines
1.4 KiB
Text
error: digits of hex or binary literal not grouped by four
|
|
--> $DIR/large_digit_groups.rs:14:9
|
|
|
|
|
LL | 0x1_234_567,
|
|
| ^^^^^^^^^^^ help: consider: `0x0123_4567`
|
|
|
|
|
= note: `-D clippy::unusual-byte-groupings` implied by `-D warnings`
|
|
|
|
error: digits of hex or binary literal not grouped by four
|
|
--> $DIR/large_digit_groups.rs:22:9
|
|
|
|
|
LL | 0b1_10110_i64,
|
|
| ^^^^^^^^^^^^^ help: consider: `0b11_0110_i64`
|
|
|
|
error: digits of hex or binary literal not grouped by four
|
|
--> $DIR/large_digit_groups.rs:23:9
|
|
|
|
|
LL | 0xd_e_adbee_f_usize,
|
|
| ^^^^^^^^^^^^^^^^^^^ help: consider: `0xdead_beef_usize`
|
|
|
|
error: digit groups should be smaller
|
|
--> $DIR/large_digit_groups.rs:24:9
|
|
|
|
|
LL | 1_23456_f32,
|
|
| ^^^^^^^^^^^ help: consider: `123_456_f32`
|
|
|
|
|
= note: `-D clippy::large-digit-groups` implied by `-D warnings`
|
|
|
|
error: digit groups should be smaller
|
|
--> $DIR/large_digit_groups.rs:25:9
|
|
|
|
|
LL | 1_23456.12_f32,
|
|
| ^^^^^^^^^^^^^^ help: consider: `123_456.12_f32`
|
|
|
|
error: digit groups should be smaller
|
|
--> $DIR/large_digit_groups.rs:26:9
|
|
|
|
|
LL | 1_23456.12345_f64,
|
|
| ^^^^^^^^^^^^^^^^^ help: consider: `123_456.123_45_f64`
|
|
|
|
error: digit groups should be smaller
|
|
--> $DIR/large_digit_groups.rs:27:9
|
|
|
|
|
LL | 1_23456.12345_6_f64,
|
|
| ^^^^^^^^^^^^^^^^^^^ help: consider: `123_456.123_456_f64`
|
|
|
|
error: aborting due to 7 previous errors
|
|
|