2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a `f64` to a pointer
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/transmute_64bit.rs:21:31
|
2018-08-01 14:30:44 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
21 | let _: *const usize = std::mem::transmute(6.0f64);
|
2018-08-01 14:30:44 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::wrong-transmute` implied by `-D warnings`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a `f64` to a pointer
|
2018-10-06 16:18:06 +00:00
|
|
|
--> $DIR/transmute_64bit.rs:23:29
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-10-06 16:18:06 +00:00
|
|
|
23 | let _: *mut usize = std::mem::transmute(6.0f64);
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 16:06:27 +00:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|