mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
13 lines
385 B
Rust
13 lines
385 B
Rust
//@ignore-32bit
|
|
|
|
#[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`
|
|
|
|
let _: *mut usize = std::mem::transmute(6.0f64);
|
|
//~^ ERROR: transmute from a `f64` to a pointer
|
|
}
|
|
}
|