rust-clippy/tests/ui/transmute_64bit.rs

14 lines
385 B
Rust
Raw Normal View History

//@ignore-32bit
2017-09-18 10:47:33 +00:00
2018-07-28 15:34:52 +00:00
#[warn(clippy::wrong_transmute)]
fn main() {
unsafe {
let _: *const usize = std::mem::transmute(6.0f64);
//~^ ERROR: transmute from a `f64` to a pointer
//~| NOTE: `-D clippy::wrong-transmute` implied by `-D warnings`
2017-02-08 13:58:07 +00:00
let _: *mut usize = std::mem::transmute(6.0f64);
//~^ ERROR: transmute from a `f64` to a pointer
}
}