2018-12-21 08:15:47 -06:00
|
|
|
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/transmute-fat-pointers.rs:10:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | unsafe { transmute(x) }
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2018-12-21 08:15:47 -06:00
|
|
|
= note: source type: `&[T]` (N bits)
|
|
|
|
= note: target type: `&U` (pointer to `U`)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-12-21 08:15:47 -06:00
|
|
|
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/transmute-fat-pointers.rs:14:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | unsafe { transmute(x) }
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2018-12-21 08:15:47 -06:00
|
|
|
= note: source type: `&T` (pointer to `T`)
|
|
|
|
= note: target type: `&U` (pointer to `U`)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-12-21 08:15:47 -06:00
|
|
|
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/transmute-fat-pointers.rs:26:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | unsafe { transmute(x) }
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2018-12-21 08:15:47 -06:00
|
|
|
= note: source type: `&T` (pointer to `T`)
|
|
|
|
= note: target type: `&U` (N bits)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2018-12-21 08:15:47 -06:00
|
|
|
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/transmute-fat-pointers.rs:30:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | unsafe { transmute(x) }
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
2018-12-21 08:15:47 -06:00
|
|
|
= note: source type: `&T` (N bits)
|
|
|
|
= note: target type: `&U` (pointer to `U`)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0512`.
|