rust/tests/ui/transmute_64bit.stderr

17 lines
517 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:9:31
|
9 | let _: *const usize = std::mem::transmute(6.0f64);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-08-01 17:54:21 +02:00
= note: `-D 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:11:29
|
11 | let _: *mut usize = std::mem::transmute(6.0f64);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-01-16 17:06:27 +01:00
error: aborting due to 2 previous errors