blob: e75b81671e093c4381aa095c35e67c27d120e03a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
error: transmute from a `f64` to a pointer
--> tests/ui/transmute_64bit.rs:6:31
|
LL | let _: *const usize = std::mem::transmute(6.0f64);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::wrong-transmute` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::wrong_transmute)]`
error: transmute from a `f64` to a pointer
--> tests/ui/transmute_64bit.rs:9:29
|
LL | let _: *mut usize = std::mem::transmute(6.0f64);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
|