@@ -6,7 +6,7 @@ LL | let _x: isize<isize>;
66 | |
77 | not allowed on this
88 |
9- help: primitive type `isize` doesn't have type parameters
9+ help: primitive type `isize` doesn't have generic parameters
1010 |
1111LL - let _x: isize<isize>;
1212LL + let _x: isize;
@@ -20,7 +20,7 @@ LL | let _x: i8<isize>;
2020 | |
2121 | not allowed on this
2222 |
23- help: primitive type `i8` doesn't have type parameters
23+ help: primitive type `i8` doesn't have generic parameters
2424 |
2525LL - let _x: i8<isize>;
2626LL + let _x: i8;
@@ -34,7 +34,7 @@ LL | let _x: i16<isize>;
3434 | |
3535 | not allowed on this
3636 |
37- help: primitive type `i16` doesn't have type parameters
37+ help: primitive type `i16` doesn't have generic parameters
3838 |
3939LL - let _x: i16<isize>;
4040LL + let _x: i16;
@@ -48,7 +48,7 @@ LL | let _x: i32<isize>;
4848 | |
4949 | not allowed on this
5050 |
51- help: primitive type `i32` doesn't have type parameters
51+ help: primitive type `i32` doesn't have generic parameters
5252 |
5353LL - let _x: i32<isize>;
5454LL + let _x: i32;
@@ -62,7 +62,7 @@ LL | let _x: i64<isize>;
6262 | |
6363 | not allowed on this
6464 |
65- help: primitive type `i64` doesn't have type parameters
65+ help: primitive type `i64` doesn't have generic parameters
6666 |
6767LL - let _x: i64<isize>;
6868LL + let _x: i64;
@@ -76,7 +76,7 @@ LL | let _x: usize<isize>;
7676 | |
7777 | not allowed on this
7878 |
79- help: primitive type `usize` doesn't have type parameters
79+ help: primitive type `usize` doesn't have generic parameters
8080 |
8181LL - let _x: usize<isize>;
8282LL + let _x: usize;
@@ -90,7 +90,7 @@ LL | let _x: u8<isize>;
9090 | |
9191 | not allowed on this
9292 |
93- help: primitive type `u8` doesn't have type parameters
93+ help: primitive type `u8` doesn't have generic parameters
9494 |
9595LL - let _x: u8<isize>;
9696LL + let _x: u8;
@@ -104,7 +104,7 @@ LL | let _x: u16<isize>;
104104 | |
105105 | not allowed on this
106106 |
107- help: primitive type `u16` doesn't have type parameters
107+ help: primitive type `u16` doesn't have generic parameters
108108 |
109109LL - let _x: u16<isize>;
110110LL + let _x: u16;
@@ -118,7 +118,7 @@ LL | let _x: u32<isize>;
118118 | |
119119 | not allowed on this
120120 |
121- help: primitive type `u32` doesn't have type parameters
121+ help: primitive type `u32` doesn't have generic parameters
122122 |
123123LL - let _x: u32<isize>;
124124LL + let _x: u32;
@@ -132,7 +132,7 @@ LL | let _x: u64<isize>;
132132 | |
133133 | not allowed on this
134134 |
135- help: primitive type `u64` doesn't have type parameters
135+ help: primitive type `u64` doesn't have generic parameters
136136 |
137137LL - let _x: u64<isize>;
138138LL + let _x: u64;
@@ -146,7 +146,7 @@ LL | let _x: char<isize>;
146146 | |
147147 | not allowed on this
148148 |
149- help: primitive type `char` doesn't have type parameters
149+ help: primitive type `char` doesn't have generic parameters
150150 |
151151LL - let _x: char<isize>;
152152LL + let _x: char;
@@ -160,7 +160,7 @@ LL | let _x: isize<'static>;
160160 | |
161161 | not allowed on this
162162 |
163- help: primitive type `isize` doesn't have type parameters
163+ help: primitive type `isize` doesn't have generic parameters
164164 |
165165LL - let _x: isize<'static>;
166166LL + let _x: isize;
@@ -174,7 +174,7 @@ LL | let _x: i8<'static>;
174174 | |
175175 | not allowed on this
176176 |
177- help: primitive type `i8` doesn't have type parameters
177+ help: primitive type `i8` doesn't have generic parameters
178178 |
179179LL - let _x: i8<'static>;
180180LL + let _x: i8;
@@ -188,7 +188,7 @@ LL | let _x: i16<'static>;
188188 | |
189189 | not allowed on this
190190 |
191- help: primitive type `i16` doesn't have type parameters
191+ help: primitive type `i16` doesn't have generic parameters
192192 |
193193LL - let _x: i16<'static>;
194194LL + let _x: i16;
@@ -202,7 +202,7 @@ LL | let _x: i32<'static>;
202202 | |
203203 | not allowed on this
204204 |
205- help: primitive type `i32` doesn't have type parameters
205+ help: primitive type `i32` doesn't have generic parameters
206206 |
207207LL - let _x: i32<'static>;
208208LL + let _x: i32;
@@ -216,7 +216,7 @@ LL | let _x: i64<'static>;
216216 | |
217217 | not allowed on this
218218 |
219- help: primitive type `i64` doesn't have type parameters
219+ help: primitive type `i64` doesn't have generic parameters
220220 |
221221LL - let _x: i64<'static>;
222222LL + let _x: i64;
@@ -230,7 +230,7 @@ LL | let _x: usize<'static>;
230230 | |
231231 | not allowed on this
232232 |
233- help: primitive type `usize` doesn't have type parameters
233+ help: primitive type `usize` doesn't have generic parameters
234234 |
235235LL - let _x: usize<'static>;
236236LL + let _x: usize;
@@ -244,7 +244,7 @@ LL | let _x: u8<'static>;
244244 | |
245245 | not allowed on this
246246 |
247- help: primitive type `u8` doesn't have type parameters
247+ help: primitive type `u8` doesn't have generic parameters
248248 |
249249LL - let _x: u8<'static>;
250250LL + let _x: u8;
@@ -258,7 +258,7 @@ LL | let _x: u16<'static>;
258258 | |
259259 | not allowed on this
260260 |
261- help: primitive type `u16` doesn't have type parameters
261+ help: primitive type `u16` doesn't have generic parameters
262262 |
263263LL - let _x: u16<'static>;
264264LL + let _x: u16;
@@ -272,7 +272,7 @@ LL | let _x: u32<'static>;
272272 | |
273273 | not allowed on this
274274 |
275- help: primitive type `u32` doesn't have type parameters
275+ help: primitive type `u32` doesn't have generic parameters
276276 |
277277LL - let _x: u32<'static>;
278278LL + let _x: u32;
@@ -286,7 +286,7 @@ LL | let _x: u64<'static>;
286286 | |
287287 | not allowed on this
288288 |
289- help: primitive type `u64` doesn't have type parameters
289+ help: primitive type `u64` doesn't have generic parameters
290290 |
291291LL - let _x: u64<'static>;
292292LL + let _x: u64;
@@ -300,7 +300,7 @@ LL | let _x: char<'static>;
300300 | |
301301 | not allowed on this
302302 |
303- help: primitive type `char` doesn't have type parameters
303+ help: primitive type `char` doesn't have generic parameters
304304 |
305305LL - let _x: char<'static>;
306306LL + let _x: char;
0 commit comments