mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
15 lines
357 B
Rust
15 lines
357 B
Rust
//ignore-x86
|
|
//no-ignore-x86_64
|
|
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#[deny(wrong_transmute)]
|
|
fn main() {
|
|
unsafe {
|
|
let _: *const usize = std::mem::transmute(6.0f64);
|
|
//~^ ERROR transmute from a `f64` to a pointer
|
|
|
|
let _: *mut usize = std::mem::transmute(6.0f64);
|
|
//~^ ERROR transmute from a `f64` to a pointer
|
|
}
|
|
}
|