mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
28 lines
940 B
Text
28 lines
940 B
Text
error: transmute from a `f32` to a pointer
|
|
--> $DIR/transmute_32bit.rs:6:31
|
|
|
|
|
LL | let _: *const usize = std::mem::transmute(6.0f32);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::wrong-transmute` implied by `-D warnings`
|
|
|
|
error: transmute from a `f32` to a pointer
|
|
--> $DIR/transmute_32bit.rs:8:29
|
|
|
|
|
LL | let _: *mut usize = std::mem::transmute(6.0f32);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: transmute from a `char` to a pointer
|
|
--> $DIR/transmute_32bit.rs:10:31
|
|
|
|
|
LL | let _: *const usize = std::mem::transmute('x');
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: transmute from a `char` to a pointer
|
|
--> $DIR/transmute_32bit.rs:12:29
|
|
|
|
|
LL | let _: *mut usize = std::mem::transmute('x');
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|