@@ -2,7 +2,7 @@ error[E0277]: `Zst` cannot be safely transmuted into `V0i8`
2
2
--> $DIR/primitive_reprs_should_have_correct_length.rs:46:44
3
3
|
4
4
LL | assert::is_transmutable::<Smaller, Current>();
5
- | ^^^^^^^ The size of `Zst` is smaller than the size of `V0i8`
5
+ | ^^^^^^^ the size of `Zst` is smaller than the size of `V0i8`
6
6
|
7
7
note: required by a bound in `is_transmutable`
8
8
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -24,7 +24,7 @@ error[E0277]: `V0i8` cannot be safely transmuted into `u16`
24
24
--> $DIR/primitive_reprs_should_have_correct_length.rs:48:44
25
25
|
26
26
LL | assert::is_transmutable::<Current, Larger>();
27
- | ^^^^^^ The size of `V0i8` is smaller than the size of `u16`
27
+ | ^^^^^^ the size of `V0i8` is smaller than the size of `u16`
28
28
|
29
29
note: required by a bound in `is_transmutable`
30
30
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -46,7 +46,7 @@ error[E0277]: `Zst` cannot be safely transmuted into `V0u8`
46
46
--> $DIR/primitive_reprs_should_have_correct_length.rs:54:44
47
47
|
48
48
LL | assert::is_transmutable::<Smaller, Current>();
49
- | ^^^^^^^ The size of `Zst` is smaller than the size of `V0u8`
49
+ | ^^^^^^^ the size of `Zst` is smaller than the size of `V0u8`
50
50
|
51
51
note: required by a bound in `is_transmutable`
52
52
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -68,7 +68,7 @@ error[E0277]: `V0u8` cannot be safely transmuted into `u16`
68
68
--> $DIR/primitive_reprs_should_have_correct_length.rs:56:44
69
69
|
70
70
LL | assert::is_transmutable::<Current, Larger>();
71
- | ^^^^^^ The size of `V0u8` is smaller than the size of `u16`
71
+ | ^^^^^^ the size of `V0u8` is smaller than the size of `u16`
72
72
|
73
73
note: required by a bound in `is_transmutable`
74
74
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -90,7 +90,7 @@ error[E0277]: `u8` cannot be safely transmuted into `V0i16`
90
90
--> $DIR/primitive_reprs_should_have_correct_length.rs:68:44
91
91
|
92
92
LL | assert::is_transmutable::<Smaller, Current>();
93
- | ^^^^^^^ The size of `u8` is smaller than the size of `V0i16`
93
+ | ^^^^^^^ the size of `u8` is smaller than the size of `V0i16`
94
94
|
95
95
note: required by a bound in `is_transmutable`
96
96
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -112,7 +112,7 @@ error[E0277]: `V0i16` cannot be safely transmuted into `u32`
112
112
--> $DIR/primitive_reprs_should_have_correct_length.rs:70:44
113
113
|
114
114
LL | assert::is_transmutable::<Current, Larger>();
115
- | ^^^^^^ The size of `V0i16` is smaller than the size of `u32`
115
+ | ^^^^^^ the size of `V0i16` is smaller than the size of `u32`
116
116
|
117
117
note: required by a bound in `is_transmutable`
118
118
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -134,7 +134,7 @@ error[E0277]: `u8` cannot be safely transmuted into `V0u16`
134
134
--> $DIR/primitive_reprs_should_have_correct_length.rs:76:44
135
135
|
136
136
LL | assert::is_transmutable::<Smaller, Current>();
137
- | ^^^^^^^ The size of `u8` is smaller than the size of `V0u16`
137
+ | ^^^^^^^ the size of `u8` is smaller than the size of `V0u16`
138
138
|
139
139
note: required by a bound in `is_transmutable`
140
140
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -156,7 +156,7 @@ error[E0277]: `V0u16` cannot be safely transmuted into `u32`
156
156
--> $DIR/primitive_reprs_should_have_correct_length.rs:78:44
157
157
|
158
158
LL | assert::is_transmutable::<Current, Larger>();
159
- | ^^^^^^ The size of `V0u16` is smaller than the size of `u32`
159
+ | ^^^^^^ the size of `V0u16` is smaller than the size of `u32`
160
160
|
161
161
note: required by a bound in `is_transmutable`
162
162
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -178,7 +178,7 @@ error[E0277]: `u16` cannot be safely transmuted into `V0i32`
178
178
--> $DIR/primitive_reprs_should_have_correct_length.rs:90:44
179
179
|
180
180
LL | assert::is_transmutable::<Smaller, Current>();
181
- | ^^^^^^^ The size of `u16` is smaller than the size of `V0i32`
181
+ | ^^^^^^^ the size of `u16` is smaller than the size of `V0i32`
182
182
|
183
183
note: required by a bound in `is_transmutable`
184
184
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -200,7 +200,7 @@ error[E0277]: `V0i32` cannot be safely transmuted into `u64`
200
200
--> $DIR/primitive_reprs_should_have_correct_length.rs:92:44
201
201
|
202
202
LL | assert::is_transmutable::<Current, Larger>();
203
- | ^^^^^^ The size of `V0i32` is smaller than the size of `u64`
203
+ | ^^^^^^ the size of `V0i32` is smaller than the size of `u64`
204
204
|
205
205
note: required by a bound in `is_transmutable`
206
206
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -222,7 +222,7 @@ error[E0277]: `u16` cannot be safely transmuted into `V0u32`
222
222
--> $DIR/primitive_reprs_should_have_correct_length.rs:98:44
223
223
|
224
224
LL | assert::is_transmutable::<Smaller, Current>();
225
- | ^^^^^^^ The size of `u16` is smaller than the size of `V0u32`
225
+ | ^^^^^^^ the size of `u16` is smaller than the size of `V0u32`
226
226
|
227
227
note: required by a bound in `is_transmutable`
228
228
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -244,7 +244,7 @@ error[E0277]: `V0u32` cannot be safely transmuted into `u64`
244
244
--> $DIR/primitive_reprs_should_have_correct_length.rs:100:44
245
245
|
246
246
LL | assert::is_transmutable::<Current, Larger>();
247
- | ^^^^^^ The size of `V0u32` is smaller than the size of `u64`
247
+ | ^^^^^^ the size of `V0u32` is smaller than the size of `u64`
248
248
|
249
249
note: required by a bound in `is_transmutable`
250
250
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -266,7 +266,7 @@ error[E0277]: `u32` cannot be safely transmuted into `V0i64`
266
266
--> $DIR/primitive_reprs_should_have_correct_length.rs:112:44
267
267
|
268
268
LL | assert::is_transmutable::<Smaller, Current>();
269
- | ^^^^^^^ The size of `u32` is smaller than the size of `V0i64`
269
+ | ^^^^^^^ the size of `u32` is smaller than the size of `V0i64`
270
270
|
271
271
note: required by a bound in `is_transmutable`
272
272
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -288,7 +288,7 @@ error[E0277]: `V0i64` cannot be safely transmuted into `u128`
288
288
--> $DIR/primitive_reprs_should_have_correct_length.rs:114:44
289
289
|
290
290
LL | assert::is_transmutable::<Current, Larger>();
291
- | ^^^^^^ The size of `V0i64` is smaller than the size of `u128`
291
+ | ^^^^^^ the size of `V0i64` is smaller than the size of `u128`
292
292
|
293
293
note: required by a bound in `is_transmutable`
294
294
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -310,7 +310,7 @@ error[E0277]: `u32` cannot be safely transmuted into `V0u64`
310
310
--> $DIR/primitive_reprs_should_have_correct_length.rs:120:44
311
311
|
312
312
LL | assert::is_transmutable::<Smaller, Current>();
313
- | ^^^^^^^ The size of `u32` is smaller than the size of `V0u64`
313
+ | ^^^^^^^ the size of `u32` is smaller than the size of `V0u64`
314
314
|
315
315
note: required by a bound in `is_transmutable`
316
316
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -332,7 +332,7 @@ error[E0277]: `V0u64` cannot be safely transmuted into `u128`
332
332
--> $DIR/primitive_reprs_should_have_correct_length.rs:122:44
333
333
|
334
334
LL | assert::is_transmutable::<Current, Larger>();
335
- | ^^^^^^ The size of `V0u64` is smaller than the size of `u128`
335
+ | ^^^^^^ the size of `V0u64` is smaller than the size of `u128`
336
336
|
337
337
note: required by a bound in `is_transmutable`
338
338
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -354,7 +354,7 @@ error[E0277]: `u8` cannot be safely transmuted into `V0isize`
354
354
--> $DIR/primitive_reprs_should_have_correct_length.rs:134:44
355
355
|
356
356
LL | assert::is_transmutable::<Smaller, Current>();
357
- | ^^^^^^^ The size of `u8` is smaller than the size of `V0isize`
357
+ | ^^^^^^^ the size of `u8` is smaller than the size of `V0isize`
358
358
|
359
359
note: required by a bound in `is_transmutable`
360
360
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -376,7 +376,7 @@ error[E0277]: `V0isize` cannot be safely transmuted into `[usize; 2]`
376
376
--> $DIR/primitive_reprs_should_have_correct_length.rs:136:44
377
377
|
378
378
LL | assert::is_transmutable::<Current, Larger>();
379
- | ^^^^^^ The size of `V0isize` is smaller than the size of `[usize; 2]`
379
+ | ^^^^^^ the size of `V0isize` is smaller than the size of `[usize; 2]`
380
380
|
381
381
note: required by a bound in `is_transmutable`
382
382
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -398,7 +398,7 @@ error[E0277]: `u8` cannot be safely transmuted into `V0usize`
398
398
--> $DIR/primitive_reprs_should_have_correct_length.rs:142:44
399
399
|
400
400
LL | assert::is_transmutable::<Smaller, Current>();
401
- | ^^^^^^^ The size of `u8` is smaller than the size of `V0usize`
401
+ | ^^^^^^^ the size of `u8` is smaller than the size of `V0usize`
402
402
|
403
403
note: required by a bound in `is_transmutable`
404
404
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -420,7 +420,7 @@ error[E0277]: `V0usize` cannot be safely transmuted into `[usize; 2]`
420
420
--> $DIR/primitive_reprs_should_have_correct_length.rs:144:44
421
421
|
422
422
LL | assert::is_transmutable::<Current, Larger>();
423
- | ^^^^^^ The size of `V0usize` is smaller than the size of `[usize; 2]`
423
+ | ^^^^^^ the size of `V0usize` is smaller than the size of `[usize; 2]`
424
424
|
425
425
note: required by a bound in `is_transmutable`
426
426
--> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
0 commit comments