rust/tests/ui/inconsistent_digit_grouping.stderr

35 lines
1.5 KiB
Text
Raw Normal View History

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