@@ -4,7 +4,7 @@ error[E0308]: mismatched types
4
4
LL | id_i8(a16);
5
5
| ^^^ expected `i8`, found `i16`
6
6
|
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
8
8
|
9
9
LL | id_i8(a16.try_into().unwrap());
10
10
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -15,7 +15,7 @@ error[E0308]: mismatched types
15
15
LL | id_i8(a32);
16
16
| ^^^ expected `i8`, found `i32`
17
17
|
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
19
19
|
20
20
LL | id_i8(a32.try_into().unwrap());
21
21
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -26,7 +26,7 @@ error[E0308]: mismatched types
26
26
LL | id_i8(a64);
27
27
| ^^^ expected `i8`, found `i64`
28
28
|
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
30
30
|
31
31
LL | id_i8(a64.try_into().unwrap());
32
32
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -37,7 +37,7 @@ error[E0308]: mismatched types
37
37
LL | id_i8(asize);
38
38
| ^^^^^ expected `i8`, found `isize`
39
39
|
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
41
41
|
42
42
LL | id_i8(asize.try_into().unwrap());
43
43
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -57,7 +57,7 @@ error[E0308]: mismatched types
57
57
LL | id_i16(a32);
58
58
| ^^^ expected `i16`, found `i32`
59
59
|
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
61
61
|
62
62
LL | id_i16(a32.try_into().unwrap());
63
63
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -68,7 +68,7 @@ error[E0308]: mismatched types
68
68
LL | id_i16(a64);
69
69
| ^^^ expected `i16`, found `i64`
70
70
|
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
72
72
|
73
73
LL | id_i16(a64.try_into().unwrap());
74
74
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -79,7 +79,7 @@ error[E0308]: mismatched types
79
79
LL | id_i16(asize);
80
80
| ^^^^^ expected `i16`, found `isize`
81
81
|
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
83
83
|
84
84
LL | id_i16(asize.try_into().unwrap());
85
85
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -108,7 +108,7 @@ error[E0308]: mismatched types
108
108
LL | id_i32(a64);
109
109
| ^^^ expected `i32`, found `i64`
110
110
|
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
112
112
|
113
113
LL | id_i32(a64.try_into().unwrap());
114
114
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -119,7 +119,7 @@ error[E0308]: mismatched types
119
119
LL | id_i32(asize);
120
120
| ^^^^^ expected `i32`, found `isize`
121
121
|
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
123
123
|
124
124
LL | id_i32(asize.try_into().unwrap());
125
125
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -157,7 +157,7 @@ error[E0308]: mismatched types
157
157
LL | id_i64(asize);
158
158
| ^^^^^ expected `i64`, found `isize`
159
159
|
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
161
161
|
162
162
LL | id_i64(asize.try_into().unwrap());
163
163
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -186,7 +186,7 @@ error[E0308]: mismatched types
186
186
LL | id_isize(a32);
187
187
| ^^^ expected `isize`, found `i32`
188
188
|
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
190
190
|
191
191
LL | id_isize(a32.try_into().unwrap());
192
192
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -197,7 +197,7 @@ error[E0308]: mismatched types
197
197
LL | id_isize(a64);
198
198
| ^^^ expected `isize`, found `i64`
199
199
|
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
201
201
|
202
202
LL | id_isize(a64.try_into().unwrap());
203
203
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -208,7 +208,7 @@ error[E0308]: mismatched types
208
208
LL | id_i8(c16);
209
209
| ^^^ expected `i8`, found `i16`
210
210
|
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
212
212
|
213
213
LL | id_i8(c16.try_into().unwrap());
214
214
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -219,7 +219,7 @@ error[E0308]: mismatched types
219
219
LL | id_i8(c32);
220
220
| ^^^ expected `i8`, found `i32`
221
221
|
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
223
223
|
224
224
LL | id_i8(c32.try_into().unwrap());
225
225
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -230,7 +230,7 @@ error[E0308]: mismatched types
230
230
LL | id_i8(c64);
231
231
| ^^^ expected `i8`, found `i64`
232
232
|
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
234
234
|
235
235
LL | id_i8(c64.try_into().unwrap());
236
236
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -250,7 +250,7 @@ error[E0308]: mismatched types
250
250
LL | id_i16(c32);
251
251
| ^^^ expected `i16`, found `i32`
252
252
|
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
254
254
|
255
255
LL | id_i16(c32.try_into().unwrap());
256
256
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -261,7 +261,7 @@ error[E0308]: mismatched types
261
261
LL | id_i16(c64);
262
262
| ^^^ expected `i16`, found `i64`
263
263
|
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
265
265
|
266
266
LL | id_i16(c64.try_into().unwrap());
267
267
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -290,7 +290,7 @@ error[E0308]: mismatched types
290
290
LL | id_i32(c64);
291
291
| ^^^ expected `i32`, found `i64`
292
292
|
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
294
294
|
295
295
LL | id_i32(c64.try_into().unwrap());
296
296
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -328,7 +328,7 @@ error[E0308]: mismatched types
328
328
LL | id_u8(b16);
329
329
| ^^^ expected `u8`, found `u16`
330
330
|
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
332
332
|
333
333
LL | id_u8(b16.try_into().unwrap());
334
334
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -339,7 +339,7 @@ error[E0308]: mismatched types
339
339
LL | id_u8(b32);
340
340
| ^^^ expected `u8`, found `u32`
341
341
|
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
343
343
|
344
344
LL | id_u8(b32.try_into().unwrap());
345
345
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -350,7 +350,7 @@ error[E0308]: mismatched types
350
350
LL | id_u8(b64);
351
351
| ^^^ expected `u8`, found `u64`
352
352
|
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
354
354
|
355
355
LL | id_u8(b64.try_into().unwrap());
356
356
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -361,7 +361,7 @@ error[E0308]: mismatched types
361
361
LL | id_u8(bsize);
362
362
| ^^^^^ expected `u8`, found `usize`
363
363
|
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
365
365
|
366
366
LL | id_u8(bsize.try_into().unwrap());
367
367
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -381,7 +381,7 @@ error[E0308]: mismatched types
381
381
LL | id_u16(b32);
382
382
| ^^^ expected `u16`, found `u32`
383
383
|
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
385
385
|
386
386
LL | id_u16(b32.try_into().unwrap());
387
387
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -392,7 +392,7 @@ error[E0308]: mismatched types
392
392
LL | id_u16(b64);
393
393
| ^^^ expected `u16`, found `u64`
394
394
|
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
396
396
|
397
397
LL | id_u16(b64.try_into().unwrap());
398
398
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -403,7 +403,7 @@ error[E0308]: mismatched types
403
403
LL | id_u16(bsize);
404
404
| ^^^^^ expected `u16`, found `usize`
405
405
|
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
407
407
|
408
408
LL | id_u16(bsize.try_into().unwrap());
409
409
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -432,7 +432,7 @@ error[E0308]: mismatched types
432
432
LL | id_u32(b64);
433
433
| ^^^ expected `u32`, found `u64`
434
434
|
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
436
436
|
437
437
LL | id_u32(b64.try_into().unwrap());
438
438
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -443,7 +443,7 @@ error[E0308]: mismatched types
443
443
LL | id_u32(bsize);
444
444
| ^^^^^ expected `u32`, found `usize`
445
445
|
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
447
447
|
448
448
LL | id_u32(bsize.try_into().unwrap());
449
449
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -481,7 +481,7 @@ error[E0308]: mismatched types
481
481
LL | id_u64(bsize);
482
482
| ^^^^^ expected `u64`, found `usize`
483
483
|
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
485
485
|
486
486
LL | id_u64(bsize.try_into().unwrap());
487
487
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -510,7 +510,7 @@ error[E0308]: mismatched types
510
510
LL | id_usize(b32);
511
511
| ^^^ expected `usize`, found `u32`
512
512
|
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
514
514
|
515
515
LL | id_usize(b32.try_into().unwrap());
516
516
| ^^^^^^^^^^^^^^^^^^^^^^^
@@ -521,7 +521,7 @@ error[E0308]: mismatched types
521
521
LL | id_usize(b64);
522
522
| ^^^ expected `usize`, found `u64`
523
523
|
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
525
525
|
526
526
LL | id_usize(b64.try_into().unwrap());
527
527
| ^^^^^^^^^^^^^^^^^^^^^^^
0 commit comments