2017-08-01 10:54:21 -05:00
|
|
|
error: transmute from a `f64` to a pointer
|
2019-10-25 10:17:13 -05:00
|
|
|
--> $DIR/transmute_64bit.rs:6:31
|
2018-08-01 09:30:44 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _: *const usize = std::mem::transmute(6.0f64);
|
2018-08-01 09:30:44 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::wrong-transmute` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-08-01 10:54:21 -05:00
|
|
|
error: transmute from a `f64` to a pointer
|
2019-10-25 10:17:13 -05:00
|
|
|
--> $DIR/transmute_64bit.rs:8:29
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | let _: *mut usize = std::mem::transmute(6.0f64);
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|