@@ -6,7 +6,7 @@ LL | let _x: isize<isize>;
6
6
| |
7
7
| not allowed on this
8
8
|
9
- help: primitive type `isize` doesn't have type parameters
9
+ help: primitive type `isize` doesn't have generic parameters
10
10
|
11
11
LL - let _x: isize<isize>;
12
12
LL + let _x: isize;
@@ -20,7 +20,7 @@ LL | let _x: i8<isize>;
20
20
| |
21
21
| not allowed on this
22
22
|
23
- help: primitive type `i8` doesn't have type parameters
23
+ help: primitive type `i8` doesn't have generic parameters
24
24
|
25
25
LL - let _x: i8<isize>;
26
26
LL + let _x: i8;
@@ -34,7 +34,7 @@ LL | let _x: i16<isize>;
34
34
| |
35
35
| not allowed on this
36
36
|
37
- help: primitive type `i16` doesn't have type parameters
37
+ help: primitive type `i16` doesn't have generic parameters
38
38
|
39
39
LL - let _x: i16<isize>;
40
40
LL + let _x: i16;
@@ -48,7 +48,7 @@ LL | let _x: i32<isize>;
48
48
| |
49
49
| not allowed on this
50
50
|
51
- help: primitive type `i32` doesn't have type parameters
51
+ help: primitive type `i32` doesn't have generic parameters
52
52
|
53
53
LL - let _x: i32<isize>;
54
54
LL + let _x: i32;
@@ -62,7 +62,7 @@ LL | let _x: i64<isize>;
62
62
| |
63
63
| not allowed on this
64
64
|
65
- help: primitive type `i64` doesn't have type parameters
65
+ help: primitive type `i64` doesn't have generic parameters
66
66
|
67
67
LL - let _x: i64<isize>;
68
68
LL + let _x: i64;
@@ -76,7 +76,7 @@ LL | let _x: usize<isize>;
76
76
| |
77
77
| not allowed on this
78
78
|
79
- help: primitive type `usize` doesn't have type parameters
79
+ help: primitive type `usize` doesn't have generic parameters
80
80
|
81
81
LL - let _x: usize<isize>;
82
82
LL + let _x: usize;
@@ -90,7 +90,7 @@ LL | let _x: u8<isize>;
90
90
| |
91
91
| not allowed on this
92
92
|
93
- help: primitive type `u8` doesn't have type parameters
93
+ help: primitive type `u8` doesn't have generic parameters
94
94
|
95
95
LL - let _x: u8<isize>;
96
96
LL + let _x: u8;
@@ -104,7 +104,7 @@ LL | let _x: u16<isize>;
104
104
| |
105
105
| not allowed on this
106
106
|
107
- help: primitive type `u16` doesn't have type parameters
107
+ help: primitive type `u16` doesn't have generic parameters
108
108
|
109
109
LL - let _x: u16<isize>;
110
110
LL + let _x: u16;
@@ -118,7 +118,7 @@ LL | let _x: u32<isize>;
118
118
| |
119
119
| not allowed on this
120
120
|
121
- help: primitive type `u32` doesn't have type parameters
121
+ help: primitive type `u32` doesn't have generic parameters
122
122
|
123
123
LL - let _x: u32<isize>;
124
124
LL + let _x: u32;
@@ -132,7 +132,7 @@ LL | let _x: u64<isize>;
132
132
| |
133
133
| not allowed on this
134
134
|
135
- help: primitive type `u64` doesn't have type parameters
135
+ help: primitive type `u64` doesn't have generic parameters
136
136
|
137
137
LL - let _x: u64<isize>;
138
138
LL + let _x: u64;
@@ -146,7 +146,7 @@ LL | let _x: char<isize>;
146
146
| |
147
147
| not allowed on this
148
148
|
149
- help: primitive type `char` doesn't have type parameters
149
+ help: primitive type `char` doesn't have generic parameters
150
150
|
151
151
LL - let _x: char<isize>;
152
152
LL + let _x: char;
@@ -160,7 +160,7 @@ LL | let _x: isize<'static>;
160
160
| |
161
161
| not allowed on this
162
162
|
163
- help: primitive type `isize` doesn't have type parameters
163
+ help: primitive type `isize` doesn't have generic parameters
164
164
|
165
165
LL - let _x: isize<'static>;
166
166
LL + let _x: isize;
@@ -174,7 +174,7 @@ LL | let _x: i8<'static>;
174
174
| |
175
175
| not allowed on this
176
176
|
177
- help: primitive type `i8` doesn't have type parameters
177
+ help: primitive type `i8` doesn't have generic parameters
178
178
|
179
179
LL - let _x: i8<'static>;
180
180
LL + let _x: i8;
@@ -188,7 +188,7 @@ LL | let _x: i16<'static>;
188
188
| |
189
189
| not allowed on this
190
190
|
191
- help: primitive type `i16` doesn't have type parameters
191
+ help: primitive type `i16` doesn't have generic parameters
192
192
|
193
193
LL - let _x: i16<'static>;
194
194
LL + let _x: i16;
@@ -202,7 +202,7 @@ LL | let _x: i32<'static>;
202
202
| |
203
203
| not allowed on this
204
204
|
205
- help: primitive type `i32` doesn't have type parameters
205
+ help: primitive type `i32` doesn't have generic parameters
206
206
|
207
207
LL - let _x: i32<'static>;
208
208
LL + let _x: i32;
@@ -216,7 +216,7 @@ LL | let _x: i64<'static>;
216
216
| |
217
217
| not allowed on this
218
218
|
219
- help: primitive type `i64` doesn't have type parameters
219
+ help: primitive type `i64` doesn't have generic parameters
220
220
|
221
221
LL - let _x: i64<'static>;
222
222
LL + let _x: i64;
@@ -230,7 +230,7 @@ LL | let _x: usize<'static>;
230
230
| |
231
231
| not allowed on this
232
232
|
233
- help: primitive type `usize` doesn't have type parameters
233
+ help: primitive type `usize` doesn't have generic parameters
234
234
|
235
235
LL - let _x: usize<'static>;
236
236
LL + let _x: usize;
@@ -244,7 +244,7 @@ LL | let _x: u8<'static>;
244
244
| |
245
245
| not allowed on this
246
246
|
247
- help: primitive type `u8` doesn't have type parameters
247
+ help: primitive type `u8` doesn't have generic parameters
248
248
|
249
249
LL - let _x: u8<'static>;
250
250
LL + let _x: u8;
@@ -258,7 +258,7 @@ LL | let _x: u16<'static>;
258
258
| |
259
259
| not allowed on this
260
260
|
261
- help: primitive type `u16` doesn't have type parameters
261
+ help: primitive type `u16` doesn't have generic parameters
262
262
|
263
263
LL - let _x: u16<'static>;
264
264
LL + let _x: u16;
@@ -272,7 +272,7 @@ LL | let _x: u32<'static>;
272
272
| |
273
273
| not allowed on this
274
274
|
275
- help: primitive type `u32` doesn't have type parameters
275
+ help: primitive type `u32` doesn't have generic parameters
276
276
|
277
277
LL - let _x: u32<'static>;
278
278
LL + let _x: u32;
@@ -286,7 +286,7 @@ LL | let _x: u64<'static>;
286
286
| |
287
287
| not allowed on this
288
288
|
289
- help: primitive type `u64` doesn't have type parameters
289
+ help: primitive type `u64` doesn't have generic parameters
290
290
|
291
291
LL - let _x: u64<'static>;
292
292
LL + let _x: u64;
@@ -300,7 +300,7 @@ LL | let _x: char<'static>;
300
300
| |
301
301
| not allowed on this
302
302
|
303
- help: primitive type `char` doesn't have type parameters
303
+ help: primitive type `char` doesn't have generic parameters
304
304
|
305
305
LL - let _x: char<'static>;
306
306
LL + let _x: char;
0 commit comments