2023-04-23 11:03:09 +00:00
|
|
|
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
|
2019-10-25 15:17:13 +00:00
|
|
|
--> $DIR/transmute_32bit.rs:6:31
|
|
|
|
|
|
|
|
|
LL | let _: *const usize = std::mem::transmute(6.0f32);
|
2023-04-23 11:03:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
2019-10-25 15:17:13 +00:00
|
|
|
|
|
2023-04-23 11:03:09 +00:00
|
|
|
= note: source type: `f32` (32 bits)
|
|
|
|
= note: target type: `*const usize` (64 bits)
|
2019-10-25 15:17:13 +00:00
|
|
|
|
2023-04-23 11:03:09 +00:00
|
|
|
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
|
2019-10-25 15:17:13 +00:00
|
|
|
--> $DIR/transmute_32bit.rs:8:29
|
|
|
|
|
|
|
|
|
LL | let _: *mut usize = std::mem::transmute(6.0f32);
|
2023-04-23 11:03:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: source type: `f32` (32 bits)
|
|
|
|
= note: target type: `*mut usize` (64 bits)
|
2019-10-25 15:17:13 +00:00
|
|
|
|
2023-04-23 11:03:09 +00:00
|
|
|
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
|
2019-10-25 15:17:13 +00:00
|
|
|
--> $DIR/transmute_32bit.rs:10:31
|
|
|
|
|
|
|
|
|
LL | let _: *const usize = std::mem::transmute('x');
|
2023-04-23 11:03:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: source type: `char` (32 bits)
|
|
|
|
= note: target type: `*const usize` (64 bits)
|
2019-10-25 15:17:13 +00:00
|
|
|
|
2023-04-23 11:03:09 +00:00
|
|
|
error[E0512]: cannot transmute between types of different sizes, or dependently-sized types
|
2019-10-25 15:17:13 +00:00
|
|
|
--> $DIR/transmute_32bit.rs:12:29
|
|
|
|
|
|
|
|
|
LL | let _: *mut usize = std::mem::transmute('x');
|
2023-04-23 11:03:09 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: source type: `char` (32 bits)
|
|
|
|
= note: target type: `*mut usize` (64 bits)
|
2019-10-25 15:17:13 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2023-04-23 11:03:09 +00:00
|
|
|
For more information about this error, try `rustc --explain E0512`.
|