rust/tests/ui/large_digit_groups.stderr

41 lines
1.2 KiB
Plaintext
Raw Normal View History

2017-07-19 18:56:32 -05:00
error: digit groups should be smaller
--> $DIR/large_digit_groups.rs:15:9
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 0b1_10110_i64,
2018-12-09 23:27:19 -06:00
| ^^^^^^^^^^^^^ help: consider: `0b11_0110_i64`
2018-10-06 11:18:06 -05:00
|
= note: `-D clippy::large-digit-groups` implied by `-D warnings`
2017-07-19 18:56:32 -05:00
error: digit groups should be smaller
--> $DIR/large_digit_groups.rs:16:9
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 0x1_23456_78901_usize,
2018-12-09 23:27:19 -06:00
| ^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x0123_4567_8901_usize`
2017-07-19 18:56:32 -05:00
error: digit groups should be smaller
--> $DIR/large_digit_groups.rs:17:9
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 1_23456_f32,
2018-12-09 23:27:19 -06:00
| ^^^^^^^^^^^ help: consider: `123_456_f32`
2017-07-19 18:56:32 -05:00
error: digit groups should be smaller
--> $DIR/large_digit_groups.rs:18:9
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 1_23456.12_f32,
2018-12-09 23:27:19 -06:00
| ^^^^^^^^^^^^^^ help: consider: `123_456.12_f32`
2017-07-19 18:56:32 -05:00
error: digit groups should be smaller
--> $DIR/large_digit_groups.rs:19:9
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 1_23456.12345_f32,
2018-12-09 23:27:19 -06:00
| ^^^^^^^^^^^^^^^^^ help: consider: `123_456.123_45_f32`
2017-07-19 18:56:32 -05:00
error: digit groups should be smaller
--> $DIR/large_digit_groups.rs:20:9
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | 1_23456.12345_6_f32,
2018-12-09 23:27:19 -06:00
| ^^^^^^^^^^^^^^^^^^^ help: consider: `123_456.123_456_f32`
2017-07-19 18:56:32 -05:00
2018-01-16 10:06:27 -06:00
error: aborting due to 6 previous errors