rust/tests/ui/transmute_64bit.stderr

17 lines
530 B
Text
Raw Normal View History

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