2016-06-28 14:08:08 +02:00
|
|
|
//ignore-x86
|
|
|
|
//no-ignore-x86_64
|
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
2017-05-17 14:19:44 +02:00
|
|
|
#[warn(wrong_transmute)]
|
2016-06-28 14:08:08 +02:00
|
|
|
fn main() {
|
|
|
|
unsafe {
|
|
|
|
let _: *const usize = std::mem::transmute(6.0f64);
|
2017-02-08 14:58:07 +01:00
|
|
|
|
2016-06-28 14:08:08 +02:00
|
|
|
let _: *mut usize = std::mem::transmute(6.0f64);
|
|
|
|
}
|
|
|
|
}
|