summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/large_digit_groups.stderr
blob: 19c0fae98a645188e3d15050e58c6d065e524dc7 (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
error: digits of hex, binary or octal literal not in groups of equal size
  --> $DIR/large_digit_groups.rs:23:9
   |
LL |         0xd_e_adbee_f_usize,
   |         ^^^^^^^^^^^^^^^^^^^ help: consider: `0xdead_beef_usize`
   |
   = note: `-D clippy::unusual-byte-groupings` implied by `-D warnings`

error: digit groups should be smaller
  --> $DIR/large_digit_groups.rs:24:9
   |
LL |         1_23456_f32,
   |         ^^^^^^^^^^^ help: consider: `123_456_f32`
   |
   = note: `-D clippy::large-digit-groups` implied by `-D warnings`

error: digit groups should be smaller
  --> $DIR/large_digit_groups.rs:25:9
   |
LL |         1_23456.12_f32,
   |         ^^^^^^^^^^^^^^ help: consider: `123_456.12_f32`

error: digit groups should be smaller
  --> $DIR/large_digit_groups.rs:26:9
   |
LL |         1_23456.12345_f64,
   |         ^^^^^^^^^^^^^^^^^ help: consider: `123_456.123_45_f64`

error: digit groups should be smaller
  --> $DIR/large_digit_groups.rs:27:9
   |
LL |         1_23456.12345_6_f64,
   |         ^^^^^^^^^^^^^^^^^^^ help: consider: `123_456.123_456_f64`

error: aborting due to 5 previous errors