2018-08-08 07:28:26 -05:00
|
|
|
error[E0512]: transmute called with types of different sizes
|
2018-08-10 16:46:59 -05:00
|
|
|
--> $DIR/transmute-impl.rs:31:18
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | unsafe { transmute(x) } //~ ERROR transmute called with types of different sizes
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: source type: &T (pointer to T)
|
2018-08-10 16:46:59 -05:00
|
|
|
= note: target type: &isize (N bits)
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0512`.
|