mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
21 lines
584 B
Text
21 lines
584 B
Text
|
error: transmute from a `f64` to a pointer
|
||
|
--> $DIR/transmute_64bit.rs:9:31
|
||
|
|
|
||
|
9 | let _: *const usize = std::mem::transmute(6.0f64);
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
|
||
|
note: lint level defined here
|
||
|
--> $DIR/transmute_64bit.rs:6:8
|
||
|
|
|
||
|
6 | #[deny(wrong_transmute)]
|
||
|
| ^^^^^^^^^^^^^^^
|
||
|
|
||
|
error: transmute from a `f64` to a pointer
|
||
|
--> $DIR/transmute_64bit.rs:12:29
|
||
|
|
|
||
|
12 | let _: *mut usize = std::mem::transmute(6.0f64);
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
|
|
||
|
error: aborting due to 2 previous errors
|
||
|
|