mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
14 lines
304 B
Rust
14 lines
304 B
Rust
//ignore-x86_64
|
|
|
|
#[warn(wrong_transmute)]
|
|
fn main() {
|
|
unsafe {
|
|
let _: *const usize = std::mem::transmute(6.0f32);
|
|
|
|
let _: *mut usize = std::mem::transmute(6.0f32);
|
|
|
|
let _: *const usize = std::mem::transmute('x');
|
|
|
|
let _: *mut usize = std::mem::transmute('x');
|
|
}
|
|
}
|