41 lines
1.2 KiB
Plaintext
41 lines
1.2 KiB
Plaintext
error: digit groups should be smaller
|
|
--> $DIR/large_digit_groups.rs:22:9
|
|
|
|
|
LL | 0b1_10110_i64,
|
|
| ^^^^^^^^^^^^^ help: consider: `0b11_0110_i64`
|
|
|
|
|
= note: `-D clippy::large-digit-groups` implied by `-D warnings`
|
|
|
|
error: digit groups should be smaller
|
|
--> $DIR/large_digit_groups.rs:23:9
|
|
|
|
|
LL | 0x1_23456_78901_usize,
|
|
| ^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x0123_4567_8901_usize`
|
|
|
|
error: digit groups should be smaller
|
|
--> $DIR/large_digit_groups.rs:24:9
|
|
|
|
|
LL | 1_23456_f32,
|
|
| ^^^^^^^^^^^ help: consider: `123_456_f32`
|
|
|
|
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 6 previous errors
|
|
|