mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
16 lines
532 B
Text
16 lines
532 B
Text
error: transmute from a `f64` to a pointer
|
|
--> $DIR/transmute_64bit.rs:21:31
|
|
|
|
|
21 | let _: *const usize = std::mem::transmute(6.0f64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::wrong-transmute` implied by `-D warnings`
|
|
|
|
error: transmute from a `f64` to a pointer
|
|
--> $DIR/transmute_64bit.rs:23:29
|
|
|
|
|
23 | let _: *mut usize = std::mem::transmute(6.0f64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|