summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/literals.stderr
blob: 603d47bacca80a0a2188b650042621ed55b0a502 (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
error: integer type suffix should not be separated by an underscore
  --> $DIR/literals.rs:12:15
   |
LL |     let ok4 = 0xab_cd_i32;
   |               ^^^^^^^^^^^ help: remove the underscore: `0xab_cdi32`
   |
   = note: `-D clippy::separated-literal-suffix` implied by `-D warnings`

error: integer type suffix should not be separated by an underscore
  --> $DIR/literals.rs:13:15
   |
LL |     let ok5 = 0xAB_CD_u32;
   |               ^^^^^^^^^^^ help: remove the underscore: `0xAB_CDu32`

error: integer type suffix should not be separated by an underscore
  --> $DIR/literals.rs:14:15
   |
LL |     let ok5 = 0xAB_CD_isize;
   |               ^^^^^^^^^^^^^ help: remove the underscore: `0xAB_CDisize`

error: inconsistent casing in hexadecimal literal
  --> $DIR/literals.rs:15:17
   |
LL |     let fail1 = 0xabCD;
   |                 ^^^^^^
   |
   = note: `-D clippy::mixed-case-hex-literals` implied by `-D warnings`

error: integer type suffix should not be separated by an underscore
  --> $DIR/literals.rs:16:17
   |
LL |     let fail2 = 0xabCD_u32;
   |                 ^^^^^^^^^^ help: remove the underscore: `0xabCDu32`

error: inconsistent casing in hexadecimal literal
  --> $DIR/literals.rs:16:17
   |
LL |     let fail2 = 0xabCD_u32;
   |                 ^^^^^^^^^^

error: integer type suffix should not be separated by an underscore
  --> $DIR/literals.rs:17:17
   |
LL |     let fail2 = 0xabCD_isize;
   |                 ^^^^^^^^^^^^ help: remove the underscore: `0xabCDisize`

error: inconsistent casing in hexadecimal literal
  --> $DIR/literals.rs:17:17
   |
LL |     let fail2 = 0xabCD_isize;
   |                 ^^^^^^^^^^^^

error: integer type suffix should be separated by an underscore
  --> $DIR/literals.rs:18:27
   |
LL |     let fail_multi_zero = 000_123usize;
   |                           ^^^^^^^^^^^^ help: add an underscore: `000_123_usize`
   |
   = note: `-D clippy::unseparated-literal-suffix` implied by `-D warnings`

error: this is a decimal constant
  --> $DIR/literals.rs:18:27
   |
LL |     let fail_multi_zero = 000_123usize;
   |                           ^^^^^^^^^^^^
   |
   = note: `-D clippy::zero-prefixed-literal` implied by `-D warnings`
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
   |
LL |     let fail_multi_zero = 123usize;
   |                           ~~~~~~~~
help: if you mean to use an octal constant, use `0o`
   |
LL |     let fail_multi_zero = 0o123usize;
   |                           ~~~~~~~~~~

error: integer type suffix should not be separated by an underscore
  --> $DIR/literals.rs:21:16
   |
LL |     let ok10 = 0_i64;
   |                ^^^^^ help: remove the underscore: `0i64`

error: this is a decimal constant
  --> $DIR/literals.rs:22:17
   |
LL |     let fail8 = 0123;
   |                 ^^^^
   |
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
   |
LL |     let fail8 = 123;
   |                 ~~~
help: if you mean to use an octal constant, use `0o`
   |
LL |     let fail8 = 0o123;
   |                 ~~~~~

error: integer type suffix should not be separated by an underscore
  --> $DIR/literals.rs:31:16
   |
LL |     let ok17 = 0x123_4567_8901_usize;
   |                ^^^^^^^^^^^^^^^^^^^^^ help: remove the underscore: `0x123_4567_8901usize`

error: digits grouped inconsistently by underscores
  --> $DIR/literals.rs:34:18
   |
LL |     let fail19 = 12_3456_21;
   |                  ^^^^^^^^^^ help: consider: `12_345_621`
   |
   = note: `-D clippy::inconsistent-digit-grouping` implied by `-D warnings`

error: digits grouped inconsistently by underscores
  --> $DIR/literals.rs:35:18
   |
LL |     let fail22 = 3__4___23;
   |                  ^^^^^^^^^ help: consider: `3_423`

error: digits grouped inconsistently by underscores
  --> $DIR/literals.rs:36:18
   |
LL |     let fail23 = 3__16___23;
   |                  ^^^^^^^^^^ help: consider: `31_623`

error: digits of hex or binary literal not grouped by four
  --> $DIR/literals.rs:38:18
   |
LL |     let fail24 = 0xAB_ABC_AB;
   |                  ^^^^^^^^^^^ help: consider: `0x0ABA_BCAB`
   |
   = note: `-D clippy::unusual-byte-groupings` implied by `-D warnings`

error: digits of hex or binary literal not grouped by four
  --> $DIR/literals.rs:39:18
   |
LL |     let fail25 = 0b01_100_101;
   |                  ^^^^^^^^^^^^ help: consider: `0b0110_0101`

error: this is a decimal constant
  --> $DIR/literals.rs:46:13
   |
LL |     let _ = 08;
   |             ^^
   |
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
   |
LL |     let _ = 8;
   |             ~

error: this is a decimal constant
  --> $DIR/literals.rs:47:13
   |
LL |     let _ = 09;
   |             ^^
   |
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
   |
LL |     let _ = 9;
   |             ~

error: this is a decimal constant
  --> $DIR/literals.rs:48:13
   |
LL |     let _ = 089;
   |             ^^^
   |
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
   |
LL |     let _ = 89;
   |             ~~

error: aborting due to 21 previous errors