summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/inconsistent_digit_grouping.stderr
blob: b8ac915546200718aba29271f5776a380980efe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
error: digits grouped inconsistently by underscores
  --> $DIR/inconsistent_digit_grouping.rs:26:16
   |
LL |     let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
   |                ^^^^^^^^ help: consider: `123_456`
   |
   = note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`

error: digits grouped inconsistently by underscores
  --> $DIR/inconsistent_digit_grouping.rs:26:26
   |
LL |     let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
   |                          ^^^^^^^^^^ help: consider: `12_345_678`

error: digits grouped inconsistently by underscores
  --> $DIR/inconsistent_digit_grouping.rs:26:38
   |
LL |     let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
   |                                      ^^^^^^^^ help: consider: `1_234_567`

error: digits grouped inconsistently by underscores
  --> $DIR/inconsistent_digit_grouping.rs:26:48
   |
LL |     let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
   |                                                ^^^^^^^^^^^^^^ help: consider: `1_234.567_8_f32`

error: digits grouped inconsistently by underscores
  --> $DIR/inconsistent_digit_grouping.rs:26:64
   |
LL |     let bad = (1_23_456, 1_234_5678, 1234_567, 1_234.5678_f32, 1.234_5678_f32);
   |                                                                ^^^^^^^^^^^^^^ help: consider: `1.234_567_8_f32`

error: long literal lacking separators
  --> $DIR/inconsistent_digit_grouping.rs:29:13
   |
LL |     let _ = 0x100000;
   |             ^^^^^^^^ help: consider: `0x0010_0000`
   |
note: the lint level is defined here
  --> $DIR/inconsistent_digit_grouping.rs:3:8
   |
LL | #[deny(clippy::unreadable_literal)]
   |        ^^^^^^^^^^^^^^^^^^^^^^^^^^

error: long literal lacking separators
  --> $DIR/inconsistent_digit_grouping.rs:30:13
   |
LL |     let _ = 0x1000000;
   |             ^^^^^^^^^ help: consider: `0x0100_0000`

error: long literal lacking separators
  --> $DIR/inconsistent_digit_grouping.rs:31:13
   |
LL |     let _ = 0x10000000;
   |             ^^^^^^^^^^ help: consider: `0x1000_0000`

error: long literal lacking separators
  --> $DIR/inconsistent_digit_grouping.rs:32:13
   |
LL |     let _ = 0x100000000_u64;
   |             ^^^^^^^^^^^^^^^ help: consider: `0x0001_0000_0000_u64`

error: digits grouped inconsistently by underscores
  --> $DIR/inconsistent_digit_grouping.rs:35:18
   |
LL |     let _: f32 = 1_23_456.;
   |                  ^^^^^^^^^ help: consider: `123_456.`

error: aborting due to 10 previous errors