mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
17 lines
616 B
Text
17 lines
616 B
Text
error: transmute from a `f64` to a pointer
|
|
--> tests/ui/transmute_64bit.rs:6:31
|
|
|
|
|
LL | let _: *const usize = std::mem::transmute(6.0f64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::wrong-transmute` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::wrong_transmute)]`
|
|
|
|
error: transmute from a `f64` to a pointer
|
|
--> tests/ui/transmute_64bit.rs:10:29
|
|
|
|
|
LL | let _: *mut usize = std::mem::transmute(6.0f64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|