@@ -24,7 +24,7 @@ error[E0277]: `V0i8` cannot be safely transmuted into `u16` in the defining scop
2424 --> $DIR/primitive_reprs_should_have_correct_length.rs:50:44
2525 |
2626LL | assert::is_transmutable::<Current, Larger, Context>();
27- | ^^^^^^ At least one value of `V0i8` isn't a bit-valid value of `u16`
27+ | ^^^^^^ The size of `V0i8` is smaller than the size of `u16`
2828 |
2929note: required by a bound in `is_transmutable`
3030 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -68,7 +68,7 @@ error[E0277]: `V0u8` cannot be safely transmuted into `u16` in the defining scop
6868 --> $DIR/primitive_reprs_should_have_correct_length.rs:58:44
6969 |
7070LL | assert::is_transmutable::<Current, Larger, Context>();
71- | ^^^^^^ At least one value of `V0u8` isn't a bit-valid value of `u16`
71+ | ^^^^^^ The size of `V0u8` is smaller than the size of `u16`
7272 |
7373note: required by a bound in `is_transmutable`
7474 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -90,7 +90,7 @@ error[E0277]: `u8` cannot be safely transmuted into `V0i16` in the defining scop
9090 --> $DIR/primitive_reprs_should_have_correct_length.rs:72:44
9191 |
9292LL | assert::is_transmutable::<Smaller, Current, Context>();
93- | ^^^^^^^ At least one value of `u8` isn't a bit-valid value of `V0i16`
93+ | ^^^^^^^ The size of `u8` is smaller than the size of `V0i16`
9494 |
9595note: required by a bound in `is_transmutable`
9696 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -112,7 +112,7 @@ error[E0277]: `V0i16` cannot be safely transmuted into `u32` in the defining sco
112112 --> $DIR/primitive_reprs_should_have_correct_length.rs:74:44
113113 |
114114LL | assert::is_transmutable::<Current, Larger, Context>();
115- | ^^^^^^ At least one value of `V0i16` isn't a bit-valid value of `u32`
115+ | ^^^^^^ The size of `V0i16` is smaller than the size of `u32`
116116 |
117117note: required by a bound in `is_transmutable`
118118 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -134,7 +134,7 @@ error[E0277]: `u8` cannot be safely transmuted into `V0u16` in the defining scop
134134 --> $DIR/primitive_reprs_should_have_correct_length.rs:80:44
135135 |
136136LL | assert::is_transmutable::<Smaller, Current, Context>();
137- | ^^^^^^^ At least one value of `u8` isn't a bit-valid value of `V0u16`
137+ | ^^^^^^^ The size of `u8` is smaller than the size of `V0u16`
138138 |
139139note: required by a bound in `is_transmutable`
140140 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -156,7 +156,7 @@ error[E0277]: `V0u16` cannot be safely transmuted into `u32` in the defining sco
156156 --> $DIR/primitive_reprs_should_have_correct_length.rs:82:44
157157 |
158158LL | assert::is_transmutable::<Current, Larger, Context>();
159- | ^^^^^^ At least one value of `V0u16` isn't a bit-valid value of `u32`
159+ | ^^^^^^ The size of `V0u16` is smaller than the size of `u32`
160160 |
161161note: required by a bound in `is_transmutable`
162162 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -178,7 +178,7 @@ error[E0277]: `u16` cannot be safely transmuted into `V0i32` in the defining sco
178178 --> $DIR/primitive_reprs_should_have_correct_length.rs:96:44
179179 |
180180LL | assert::is_transmutable::<Smaller, Current, Context>();
181- | ^^^^^^^ At least one value of `u16` isn't a bit-valid value of `V0i32`
181+ | ^^^^^^^ The size of `u16` is smaller than the size of `V0i32`
182182 |
183183note: required by a bound in `is_transmutable`
184184 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -200,7 +200,7 @@ error[E0277]: `V0i32` cannot be safely transmuted into `u64` in the defining sco
200200 --> $DIR/primitive_reprs_should_have_correct_length.rs:98:44
201201 |
202202LL | assert::is_transmutable::<Current, Larger, Context>();
203- | ^^^^^^ At least one value of `V0i32` isn't a bit-valid value of `u64`
203+ | ^^^^^^ The size of `V0i32` is smaller than the size of `u64`
204204 |
205205note: required by a bound in `is_transmutable`
206206 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -222,7 +222,7 @@ error[E0277]: `u16` cannot be safely transmuted into `V0u32` in the defining sco
222222 --> $DIR/primitive_reprs_should_have_correct_length.rs:104:44
223223 |
224224LL | assert::is_transmutable::<Smaller, Current, Context>();
225- | ^^^^^^^ At least one value of `u16` isn't a bit-valid value of `V0u32`
225+ | ^^^^^^^ The size of `u16` is smaller than the size of `V0u32`
226226 |
227227note: required by a bound in `is_transmutable`
228228 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -244,7 +244,7 @@ error[E0277]: `V0u32` cannot be safely transmuted into `u64` in the defining sco
244244 --> $DIR/primitive_reprs_should_have_correct_length.rs:106:44
245245 |
246246LL | assert::is_transmutable::<Current, Larger, Context>();
247- | ^^^^^^ At least one value of `V0u32` isn't a bit-valid value of `u64`
247+ | ^^^^^^ The size of `V0u32` is smaller than the size of `u64`
248248 |
249249note: required by a bound in `is_transmutable`
250250 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -266,7 +266,7 @@ error[E0277]: `u32` cannot be safely transmuted into `V0i64` in the defining sco
266266 --> $DIR/primitive_reprs_should_have_correct_length.rs:120:44
267267 |
268268LL | assert::is_transmutable::<Smaller, Current, Context>();
269- | ^^^^^^^ At least one value of `u32` isn't a bit-valid value of `V0i64`
269+ | ^^^^^^^ The size of `u32` is smaller than the size of `V0i64`
270270 |
271271note: required by a bound in `is_transmutable`
272272 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -288,7 +288,7 @@ error[E0277]: `V0i64` cannot be safely transmuted into `u128` in the defining sc
288288 --> $DIR/primitive_reprs_should_have_correct_length.rs:122:44
289289 |
290290LL | assert::is_transmutable::<Current, Larger, Context>();
291- | ^^^^^^ At least one value of `V0i64` isn't a bit-valid value of `u128`
291+ | ^^^^^^ The size of `V0i64` is smaller than the size of `u128`
292292 |
293293note: required by a bound in `is_transmutable`
294294 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -310,7 +310,7 @@ error[E0277]: `u32` cannot be safely transmuted into `V0u64` in the defining sco
310310 --> $DIR/primitive_reprs_should_have_correct_length.rs:128:44
311311 |
312312LL | assert::is_transmutable::<Smaller, Current, Context>();
313- | ^^^^^^^ At least one value of `u32` isn't a bit-valid value of `V0u64`
313+ | ^^^^^^^ The size of `u32` is smaller than the size of `V0u64`
314314 |
315315note: required by a bound in `is_transmutable`
316316 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -332,7 +332,7 @@ error[E0277]: `V0u64` cannot be safely transmuted into `u128` in the defining sc
332332 --> $DIR/primitive_reprs_should_have_correct_length.rs:130:44
333333 |
334334LL | assert::is_transmutable::<Current, Larger, Context>();
335- | ^^^^^^ At least one value of `V0u64` isn't a bit-valid value of `u128`
335+ | ^^^^^^ The size of `V0u64` is smaller than the size of `u128`
336336 |
337337note: required by a bound in `is_transmutable`
338338 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -354,7 +354,7 @@ error[E0277]: `u8` cannot be safely transmuted into `V0isize` in the defining sc
354354 --> $DIR/primitive_reprs_should_have_correct_length.rs:144:44
355355 |
356356LL | assert::is_transmutable::<Smaller, Current, Context>();
357- | ^^^^^^^ At least one value of `u8` isn't a bit-valid value of `V0isize`
357+ | ^^^^^^^ The size of `u8` is smaller than the size of `V0isize`
358358 |
359359note: required by a bound in `is_transmutable`
360360 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -376,7 +376,7 @@ error[E0277]: `V0isize` cannot be safely transmuted into `[usize; 2]` in the def
376376 --> $DIR/primitive_reprs_should_have_correct_length.rs:146:44
377377 |
378378LL | assert::is_transmutable::<Current, Larger, Context>();
379- | ^^^^^^ At least one value of `V0isize` isn't a bit-valid value of `[usize; 2]`
379+ | ^^^^^^ The size of `V0isize` is smaller than the size of `[usize; 2]`
380380 |
381381note: required by a bound in `is_transmutable`
382382 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -398,7 +398,7 @@ error[E0277]: `u8` cannot be safely transmuted into `V0usize` in the defining sc
398398 --> $DIR/primitive_reprs_should_have_correct_length.rs:152:44
399399 |
400400LL | assert::is_transmutable::<Smaller, Current, Context>();
401- | ^^^^^^^ At least one value of `u8` isn't a bit-valid value of `V0usize`
401+ | ^^^^^^^ The size of `u8` is smaller than the size of `V0usize`
402402 |
403403note: required by a bound in `is_transmutable`
404404 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
@@ -420,7 +420,7 @@ error[E0277]: `V0usize` cannot be safely transmuted into `[usize; 2]` in the def
420420 --> $DIR/primitive_reprs_should_have_correct_length.rs:154:44
421421 |
422422LL | assert::is_transmutable::<Current, Larger, Context>();
423- | ^^^^^^ At least one value of `V0usize` isn't a bit-valid value of `[usize; 2]`
423+ | ^^^^^^ The size of `V0usize` is smaller than the size of `[usize; 2]`
424424 |
425425note: required by a bound in `is_transmutable`
426426 --> $DIR/primitive_reprs_should_have_correct_length.rs:12:14
0 commit comments