@@ -4,7 +4,7 @@ error[E0308]: mismatched types
44LL | id_i8(a16);
55 | ^^^ expected `i8`, found `i16`
66 |
7- help: you can convert an `i16` to an `i8` and panic if the converted value wouldn 't fit
7+ help: you can convert an `i16` to an `i8` and panic if the converted value doesn 't fit
88 |
99LL | id_i8(a16.try_into().unwrap());
1010 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -15,7 +15,7 @@ error[E0308]: mismatched types
1515LL | id_i8(a32);
1616 | ^^^ expected `i8`, found `i32`
1717 |
18- help: you can convert an `i32` to an `i8` and panic if the converted value wouldn 't fit
18+ help: you can convert an `i32` to an `i8` and panic if the converted value doesn 't fit
1919 |
2020LL | id_i8(a32.try_into().unwrap());
2121 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -26,7 +26,7 @@ error[E0308]: mismatched types
2626LL | id_i8(a64);
2727 | ^^^ expected `i8`, found `i64`
2828 |
29- help: you can convert an `i64` to an `i8` and panic if the converted value wouldn 't fit
29+ help: you can convert an `i64` to an `i8` and panic if the converted value doesn 't fit
3030 |
3131LL | id_i8(a64.try_into().unwrap());
3232 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -37,7 +37,7 @@ error[E0308]: mismatched types
3737LL | id_i8(asize);
3838 | ^^^^^ expected `i8`, found `isize`
3939 |
40- help: you can convert an `isize` to an `i8` and panic if the converted value wouldn 't fit
40+ help: you can convert an `isize` to an `i8` and panic if the converted value doesn 't fit
4141 |
4242LL | id_i8(asize.try_into().unwrap());
4343 | ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -57,7 +57,7 @@ error[E0308]: mismatched types
5757LL | id_i16(a32);
5858 | ^^^ expected `i16`, found `i32`
5959 |
60- help: you can convert an `i32` to an `i16` and panic if the converted value wouldn 't fit
60+ help: you can convert an `i32` to an `i16` and panic if the converted value doesn 't fit
6161 |
6262LL | id_i16(a32.try_into().unwrap());
6363 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -68,7 +68,7 @@ error[E0308]: mismatched types
6868LL | id_i16(a64);
6969 | ^^^ expected `i16`, found `i64`
7070 |
71- help: you can convert an `i64` to an `i16` and panic if the converted value wouldn 't fit
71+ help: you can convert an `i64` to an `i16` and panic if the converted value doesn 't fit
7272 |
7373LL | id_i16(a64.try_into().unwrap());
7474 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -79,7 +79,7 @@ error[E0308]: mismatched types
7979LL | id_i16(asize);
8080 | ^^^^^ expected `i16`, found `isize`
8181 |
82- help: you can convert an `isize` to an `i16` and panic if the converted value wouldn 't fit
82+ help: you can convert an `isize` to an `i16` and panic if the converted value doesn 't fit
8383 |
8484LL | id_i16(asize.try_into().unwrap());
8585 | ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -108,7 +108,7 @@ error[E0308]: mismatched types
108108LL | id_i32(a64);
109109 | ^^^ expected `i32`, found `i64`
110110 |
111- help: you can convert an `i64` to an `i32` and panic if the converted value wouldn 't fit
111+ help: you can convert an `i64` to an `i32` and panic if the converted value doesn 't fit
112112 |
113113LL | id_i32(a64.try_into().unwrap());
114114 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -119,7 +119,7 @@ error[E0308]: mismatched types
119119LL | id_i32(asize);
120120 | ^^^^^ expected `i32`, found `isize`
121121 |
122- help: you can convert an `isize` to an `i32` and panic if the converted value wouldn 't fit
122+ help: you can convert an `isize` to an `i32` and panic if the converted value doesn 't fit
123123 |
124124LL | id_i32(asize.try_into().unwrap());
125125 | ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -157,7 +157,7 @@ error[E0308]: mismatched types
157157LL | id_i64(asize);
158158 | ^^^^^ expected `i64`, found `isize`
159159 |
160- help: you can convert an `isize` to an `i64` and panic if the converted value wouldn 't fit
160+ help: you can convert an `isize` to an `i64` and panic if the converted value doesn 't fit
161161 |
162162LL | id_i64(asize.try_into().unwrap());
163163 | ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -186,7 +186,7 @@ error[E0308]: mismatched types
186186LL | id_isize(a32);
187187 | ^^^ expected `isize`, found `i32`
188188 |
189- help: you can convert an `i32` to an `isize` and panic if the converted value wouldn 't fit
189+ help: you can convert an `i32` to an `isize` and panic if the converted value doesn 't fit
190190 |
191191LL | id_isize(a32.try_into().unwrap());
192192 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -197,7 +197,7 @@ error[E0308]: mismatched types
197197LL | id_isize(a64);
198198 | ^^^ expected `isize`, found `i64`
199199 |
200- help: you can convert an `i64` to an `isize` and panic if the converted value wouldn 't fit
200+ help: you can convert an `i64` to an `isize` and panic if the converted value doesn 't fit
201201 |
202202LL | id_isize(a64.try_into().unwrap());
203203 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -208,7 +208,7 @@ error[E0308]: mismatched types
208208LL | id_i8(c16);
209209 | ^^^ expected `i8`, found `i16`
210210 |
211- help: you can convert an `i16` to an `i8` and panic if the converted value wouldn 't fit
211+ help: you can convert an `i16` to an `i8` and panic if the converted value doesn 't fit
212212 |
213213LL | id_i8(c16.try_into().unwrap());
214214 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -219,7 +219,7 @@ error[E0308]: mismatched types
219219LL | id_i8(c32);
220220 | ^^^ expected `i8`, found `i32`
221221 |
222- help: you can convert an `i32` to an `i8` and panic if the converted value wouldn 't fit
222+ help: you can convert an `i32` to an `i8` and panic if the converted value doesn 't fit
223223 |
224224LL | id_i8(c32.try_into().unwrap());
225225 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -230,7 +230,7 @@ error[E0308]: mismatched types
230230LL | id_i8(c64);
231231 | ^^^ expected `i8`, found `i64`
232232 |
233- help: you can convert an `i64` to an `i8` and panic if the converted value wouldn 't fit
233+ help: you can convert an `i64` to an `i8` and panic if the converted value doesn 't fit
234234 |
235235LL | id_i8(c64.try_into().unwrap());
236236 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -250,7 +250,7 @@ error[E0308]: mismatched types
250250LL | id_i16(c32);
251251 | ^^^ expected `i16`, found `i32`
252252 |
253- help: you can convert an `i32` to an `i16` and panic if the converted value wouldn 't fit
253+ help: you can convert an `i32` to an `i16` and panic if the converted value doesn 't fit
254254 |
255255LL | id_i16(c32.try_into().unwrap());
256256 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -261,7 +261,7 @@ error[E0308]: mismatched types
261261LL | id_i16(c64);
262262 | ^^^ expected `i16`, found `i64`
263263 |
264- help: you can convert an `i64` to an `i16` and panic if the converted value wouldn 't fit
264+ help: you can convert an `i64` to an `i16` and panic if the converted value doesn 't fit
265265 |
266266LL | id_i16(c64.try_into().unwrap());
267267 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -290,7 +290,7 @@ error[E0308]: mismatched types
290290LL | id_i32(c64);
291291 | ^^^ expected `i32`, found `i64`
292292 |
293- help: you can convert an `i64` to an `i32` and panic if the converted value wouldn 't fit
293+ help: you can convert an `i64` to an `i32` and panic if the converted value doesn 't fit
294294 |
295295LL | id_i32(c64.try_into().unwrap());
296296 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -328,7 +328,7 @@ error[E0308]: mismatched types
328328LL | id_u8(b16);
329329 | ^^^ expected `u8`, found `u16`
330330 |
331- help: you can convert a `u16` to a `u8` and panic if the converted value wouldn 't fit
331+ help: you can convert a `u16` to a `u8` and panic if the converted value doesn 't fit
332332 |
333333LL | id_u8(b16.try_into().unwrap());
334334 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -339,7 +339,7 @@ error[E0308]: mismatched types
339339LL | id_u8(b32);
340340 | ^^^ expected `u8`, found `u32`
341341 |
342- help: you can convert a `u32` to a `u8` and panic if the converted value wouldn 't fit
342+ help: you can convert a `u32` to a `u8` and panic if the converted value doesn 't fit
343343 |
344344LL | id_u8(b32.try_into().unwrap());
345345 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -350,7 +350,7 @@ error[E0308]: mismatched types
350350LL | id_u8(b64);
351351 | ^^^ expected `u8`, found `u64`
352352 |
353- help: you can convert a `u64` to a `u8` and panic if the converted value wouldn 't fit
353+ help: you can convert a `u64` to a `u8` and panic if the converted value doesn 't fit
354354 |
355355LL | id_u8(b64.try_into().unwrap());
356356 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -361,7 +361,7 @@ error[E0308]: mismatched types
361361LL | id_u8(bsize);
362362 | ^^^^^ expected `u8`, found `usize`
363363 |
364- help: you can convert a `usize` to a `u8` and panic if the converted value wouldn 't fit
364+ help: you can convert a `usize` to a `u8` and panic if the converted value doesn 't fit
365365 |
366366LL | id_u8(bsize.try_into().unwrap());
367367 | ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -381,7 +381,7 @@ error[E0308]: mismatched types
381381LL | id_u16(b32);
382382 | ^^^ expected `u16`, found `u32`
383383 |
384- help: you can convert a `u32` to a `u16` and panic if the converted value wouldn 't fit
384+ help: you can convert a `u32` to a `u16` and panic if the converted value doesn 't fit
385385 |
386386LL | id_u16(b32.try_into().unwrap());
387387 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -392,7 +392,7 @@ error[E0308]: mismatched types
392392LL | id_u16(b64);
393393 | ^^^ expected `u16`, found `u64`
394394 |
395- help: you can convert a `u64` to a `u16` and panic if the converted value wouldn 't fit
395+ help: you can convert a `u64` to a `u16` and panic if the converted value doesn 't fit
396396 |
397397LL | id_u16(b64.try_into().unwrap());
398398 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -403,7 +403,7 @@ error[E0308]: mismatched types
403403LL | id_u16(bsize);
404404 | ^^^^^ expected `u16`, found `usize`
405405 |
406- help: you can convert a `usize` to a `u16` and panic if the converted value wouldn 't fit
406+ help: you can convert a `usize` to a `u16` and panic if the converted value doesn 't fit
407407 |
408408LL | id_u16(bsize.try_into().unwrap());
409409 | ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -432,7 +432,7 @@ error[E0308]: mismatched types
432432LL | id_u32(b64);
433433 | ^^^ expected `u32`, found `u64`
434434 |
435- help: you can convert a `u64` to a `u32` and panic if the converted value wouldn 't fit
435+ help: you can convert a `u64` to a `u32` and panic if the converted value doesn 't fit
436436 |
437437LL | id_u32(b64.try_into().unwrap());
438438 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -443,7 +443,7 @@ error[E0308]: mismatched types
443443LL | id_u32(bsize);
444444 | ^^^^^ expected `u32`, found `usize`
445445 |
446- help: you can convert a `usize` to a `u32` and panic if the converted value wouldn 't fit
446+ help: you can convert a `usize` to a `u32` and panic if the converted value doesn 't fit
447447 |
448448LL | id_u32(bsize.try_into().unwrap());
449449 | ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -481,7 +481,7 @@ error[E0308]: mismatched types
481481LL | id_u64(bsize);
482482 | ^^^^^ expected `u64`, found `usize`
483483 |
484- help: you can convert a `usize` to a `u64` and panic if the converted value wouldn 't fit
484+ help: you can convert a `usize` to a `u64` and panic if the converted value doesn 't fit
485485 |
486486LL | id_u64(bsize.try_into().unwrap());
487487 | ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -510,7 +510,7 @@ error[E0308]: mismatched types
510510LL | id_usize(b32);
511511 | ^^^ expected `usize`, found `u32`
512512 |
513- help: you can convert a `u32` to a `usize` and panic if the converted value wouldn 't fit
513+ help: you can convert a `u32` to a `usize` and panic if the converted value doesn 't fit
514514 |
515515LL | id_usize(b32.try_into().unwrap());
516516 | ^^^^^^^^^^^^^^^^^^^^^^^
@@ -521,7 +521,7 @@ error[E0308]: mismatched types
521521LL | id_usize(b64);
522522 | ^^^ expected `usize`, found `u64`
523523 |
524- help: you can convert a `u64` to a `usize` and panic if the converted value wouldn 't fit
524+ help: you can convert a `u64` to a `usize` and panic if the converted value doesn 't fit
525525 |
526526LL | id_usize(b64.try_into().unwrap());
527527 | ^^^^^^^^^^^^^^^^^^^^^^^
0 commit comments