mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
475 B
Plaintext
15 lines
475 B
Plaintext
error: transmute from a `f64` to a pointer
|
|
--> $DIR/transmute_64bit.rs:9:31
|
|
|
|
|
9 | let _: *const usize = std::mem::transmute(6.0f64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D wrong-transmute` implied by `-D warnings`
|
|
|
|
error: transmute from a `f64` to a pointer
|
|
--> $DIR/transmute_64bit.rs:11:29
|
|
|
|
|
11 | let _: *mut usize = std::mem::transmute(6.0f64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|