rust/tests/ui/inconsistent_digit_grouping.stderr

35 lines
1.5 KiB
Plaintext
Raw Normal View History

2017-07-19 18:56:32 -05:00
error: digits grouped inconsistently by underscores
--> $DIR/inconsistent_digit_grouping.rs:14:16
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
2018-10-06 11:18:06 -05:00
| ^^^^^^^^ help: consider: `123_456`
|
= note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`
2017-07-19 18:56:32 -05:00
error: digits grouped inconsistently by underscores
--> $DIR/inconsistent_digit_grouping.rs:14:26
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^ help: consider: `12_345_678`
2017-07-19 18:56:32 -05:00
error: digits grouped inconsistently by underscores
--> $DIR/inconsistent_digit_grouping.rs:14:38
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
2018-10-06 11:18:06 -05:00
| ^^^^^^^^ help: consider: `1_234_567`
2017-07-19 18:56:32 -05:00
error: digits grouped inconsistently by underscores
--> $DIR/inconsistent_digit_grouping.rs:14:48
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^ help: consider: `1_234.567_8_f32`
2017-07-19 18:56:32 -05:00
error: digits grouped inconsistently by underscores
--> $DIR/inconsistent_digit_grouping.rs:14:64
2018-10-06 11:18:06 -05:00
|
2018-12-27 09:57:55 -06:00
LL | let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
2018-10-06 11:18:06 -05:00
| ^^^^^^^^^^^^^^ help: consider: `1.234_567_8_f32`
2017-07-19 18:56:32 -05:00
2018-01-16 10:06:27 -06:00
error: aborting due to 5 previous errors