2017-05-17 07:19:44 -05:00
|
|
|
warning: transmute from a `f64` to a pointer
|
2017-02-07 14:05:30 -06:00
|
|
|
--> $DIR/transmute_64bit.rs:9:31
|
|
|
|
|
|
|
|
|
9 | let _: *const usize = std::mem::transmute(6.0f64);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: #[warn(wrong_transmute)] on by default
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
warning: transmute from a `f64` to a pointer
|
2017-05-11 09:55:55 -05:00
|
|
|
--> $DIR/transmute_64bit.rs:11:29
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 09:55:55 -05:00
|
|
|
11 | let _: *mut usize = std::mem::transmute(6.0f64);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|