]> git.lizzy.rs Git - rust.git/blob - tests/ui/large_digit_groups.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / large_digit_groups.stderr
1 error: digit groups should be smaller
2   --> $DIR/large_digit_groups.rs:16:9
3    |
4 LL |         0b1_10110_i64,
5    |         ^^^^^^^^^^^^^ help: consider: `0b11_0110_i64`
6    |
7    = note: `-D clippy::large-digit-groups` implied by `-D warnings`
8
9 error: digit groups should be smaller
10   --> $DIR/large_digit_groups.rs:17:9
11    |
12 LL |         0x1_23456_78901_usize,
13    |         ^^^^^^^^^^^^^^^^^^^^^ help: consider: `0x0123_4567_8901_usize`
14
15 error: digit groups should be smaller
16   --> $DIR/large_digit_groups.rs:18:9
17    |
18 LL |         1_23456_f32,
19    |         ^^^^^^^^^^^ help: consider: `123_456_f32`
20
21 error: digit groups should be smaller
22   --> $DIR/large_digit_groups.rs:19:9
23    |
24 LL |         1_23456.12_f32,
25    |         ^^^^^^^^^^^^^^ help: consider: `123_456.12_f32`
26
27 error: digit groups should be smaller
28   --> $DIR/large_digit_groups.rs:20:9
29    |
30 LL |         1_23456.12345_f64,
31    |         ^^^^^^^^^^^^^^^^^ help: consider: `123_456.123_45_f64`
32
33 error: digit groups should be smaller
34   --> $DIR/large_digit_groups.rs:21:9
35    |
36 LL |         1_23456.12345_6_f64,
37    |         ^^^^^^^^^^^^^^^^^^^ help: consider: `123_456.123_456_f64`
38
39 error: aborting due to 6 previous errors
40