2015-11-11 14:28:31 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
|
|
|
extern crate core;
|
|
|
|
|
|
|
|
use std::mem::transmute as my_transmute;
|
|
|
|
use std::vec::Vec as MyVec;
|
|
|
|
|
2016-06-28 12:08:08 +00:00
|
|
|
fn my_int() -> Usize {
|
|
|
|
Usize(42)
|
2016-04-07 15:46:48 +00:00
|
|
|
}
|
|
|
|
|
2015-11-11 14:28:31 +00:00
|
|
|
fn my_vec() -> MyVec<i32> {
|
|
|
|
vec![]
|
|
|
|
}
|
|
|
|
|
|
|
|
#[allow(needless_lifetimes)]
|
2016-03-24 22:48:38 +00:00
|
|
|
#[deny(useless_transmute)]
|
2015-11-11 14:28:31 +00:00
|
|
|
unsafe fn _generic<'a, T, U: 'a>(t: &'a T) {
|
|
|
|
let _: &'a T = core::intrinsics::transmute(t);
|
|
|
|
//~^ ERROR transmute from a type (`&'a T`) to itself
|
|
|
|
|
|
|
|
let _: &'a U = core::intrinsics::transmute(t);
|
2016-06-27 14:12:48 +00:00
|
|
|
|
|
|
|
let _: *const T = core::intrinsics::transmute(t);
|
|
|
|
//~^ ERROR transmute from a reference to a pointer
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = t as *const T
|
|
|
|
|
|
|
|
let _: *mut T = core::intrinsics::transmute(t);
|
|
|
|
//~^ ERROR transmute from a reference to a pointer
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = t as *const T as *mut T
|
|
|
|
|
|
|
|
let _: *const U = core::intrinsics::transmute(t);
|
|
|
|
//~^ ERROR transmute from a reference to a pointer
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = t as *const T as *const U
|
2015-11-11 14:28:31 +00:00
|
|
|
}
|
|
|
|
|
2016-03-25 22:22:17 +00:00
|
|
|
#[deny(transmute_ptr_to_ref)]
|
|
|
|
unsafe fn _ptr_to_ref<T, U>(p: *const T, m: *mut T, o: *const U, om: *mut U) {
|
|
|
|
let _: &T = std::mem::transmute(p);
|
|
|
|
//~^ ERROR transmute from a pointer type (`*const T`) to a reference type (`&T`)
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = &*p;
|
|
|
|
let _: &T = &*p;
|
|
|
|
|
|
|
|
let _: &mut T = std::mem::transmute(m);
|
|
|
|
//~^ ERROR transmute from a pointer type (`*mut T`) to a reference type (`&mut T`)
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = &mut *m;
|
|
|
|
let _: &mut T = &mut *m;
|
|
|
|
|
|
|
|
let _: &T = std::mem::transmute(m);
|
|
|
|
//~^ ERROR transmute from a pointer type (`*mut T`) to a reference type (`&T`)
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = &*m;
|
|
|
|
let _: &T = &*m;
|
|
|
|
|
2016-06-28 06:48:44 +00:00
|
|
|
let _: &mut T = std::mem::transmute(p as *mut T);
|
|
|
|
//~^ ERROR transmute from a pointer type (`*mut T`) to a reference type (`&mut T`)
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = &mut *(p as *mut T);
|
2016-06-29 21:02:15 +00:00
|
|
|
let _ = &mut *(p as *mut T);
|
2016-06-28 06:48:44 +00:00
|
|
|
|
2016-03-25 22:22:17 +00:00
|
|
|
let _: &T = std::mem::transmute(o);
|
|
|
|
//~^ ERROR transmute from a pointer type (`*const U`) to a reference type (`&T`)
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = &*(o as *const T);
|
|
|
|
let _: &T = &*(o as *const T);
|
|
|
|
|
|
|
|
let _: &mut T = std::mem::transmute(om);
|
|
|
|
//~^ ERROR transmute from a pointer type (`*mut U`) to a reference type (`&mut T`)
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = &mut *(om as *mut T);
|
|
|
|
let _: &mut T = &mut *(om as *mut T);
|
|
|
|
|
|
|
|
let _: &T = std::mem::transmute(om);
|
|
|
|
//~^ ERROR transmute from a pointer type (`*mut U`) to a reference type (`&T`)
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION = &*(om as *const T);
|
|
|
|
let _: &T = &*(om as *const T);
|
|
|
|
}
|
|
|
|
|
2016-03-24 22:48:38 +00:00
|
|
|
#[deny(useless_transmute)]
|
|
|
|
fn useless() {
|
2015-11-11 14:28:31 +00:00
|
|
|
unsafe {
|
|
|
|
let _: Vec<i32> = core::intrinsics::transmute(my_vec());
|
2016-04-01 15:48:13 +00:00
|
|
|
//~^ ERROR transmute from a type (`std::vec::Vec<i32>`) to itself
|
2015-11-11 14:28:31 +00:00
|
|
|
|
|
|
|
let _: Vec<i32> = core::mem::transmute(my_vec());
|
2016-04-01 15:48:13 +00:00
|
|
|
//~^ ERROR transmute from a type (`std::vec::Vec<i32>`) to itself
|
2015-11-11 14:28:31 +00:00
|
|
|
|
|
|
|
let _: Vec<i32> = std::intrinsics::transmute(my_vec());
|
2016-04-01 15:48:13 +00:00
|
|
|
//~^ ERROR transmute from a type (`std::vec::Vec<i32>`) to itself
|
2015-11-11 14:28:31 +00:00
|
|
|
|
|
|
|
let _: Vec<i32> = std::mem::transmute(my_vec());
|
2016-04-01 15:48:13 +00:00
|
|
|
//~^ ERROR transmute from a type (`std::vec::Vec<i32>`) to itself
|
2015-11-11 14:28:31 +00:00
|
|
|
|
|
|
|
let _: Vec<i32> = my_transmute(my_vec());
|
2016-04-01 15:48:13 +00:00
|
|
|
//~^ ERROR transmute from a type (`std::vec::Vec<i32>`) to itself
|
2015-11-11 14:28:31 +00:00
|
|
|
|
|
|
|
let _: Vec<u32> = core::intrinsics::transmute(my_vec());
|
|
|
|
let _: Vec<u32> = core::mem::transmute(my_vec());
|
|
|
|
let _: Vec<u32> = std::intrinsics::transmute(my_vec());
|
|
|
|
let _: Vec<u32> = std::mem::transmute(my_vec());
|
|
|
|
let _: Vec<u32> = my_transmute(my_vec());
|
2016-06-28 12:08:08 +00:00
|
|
|
|
|
|
|
let _: *const usize = std::mem::transmute(5_isize);
|
|
|
|
//~^ ERROR transmute from an integer to a pointer
|
|
|
|
//~| HELP try
|
|
|
|
//~| SUGGESTION 5_isize as *const usize
|
2015-11-11 14:28:31 +00:00
|
|
|
}
|
|
|
|
}
|
2016-03-24 22:48:38 +00:00
|
|
|
|
2016-06-28 12:08:08 +00:00
|
|
|
struct Usize(usize);
|
|
|
|
|
2016-03-24 22:48:38 +00:00
|
|
|
#[deny(crosspointer_transmute)]
|
|
|
|
fn crosspointer() {
|
2016-06-28 12:08:08 +00:00
|
|
|
let mut int: Usize = Usize(0);
|
|
|
|
let int_const_ptr: *const Usize = &int as *const Usize;
|
|
|
|
let int_mut_ptr: *mut Usize = &mut int as *mut Usize;
|
2016-03-24 22:48:38 +00:00
|
|
|
|
|
|
|
unsafe {
|
2016-06-28 12:08:08 +00:00
|
|
|
let _: Usize = core::intrinsics::transmute(int_const_ptr);
|
|
|
|
//~^ ERROR transmute from a type (`*const Usize`) to the type that it points to (`Usize`)
|
2016-03-24 22:48:38 +00:00
|
|
|
|
2016-06-28 12:08:08 +00:00
|
|
|
let _: Usize = core::intrinsics::transmute(int_mut_ptr);
|
|
|
|
//~^ ERROR transmute from a type (`*mut Usize`) to the type that it points to (`Usize`)
|
2016-03-24 22:48:38 +00:00
|
|
|
|
2016-06-28 12:08:08 +00:00
|
|
|
let _: *const Usize = core::intrinsics::transmute(my_int());
|
|
|
|
//~^ ERROR transmute from a type (`Usize`) to a pointer to that type (`*const Usize`)
|
2016-03-24 22:48:38 +00:00
|
|
|
|
2016-06-28 12:08:08 +00:00
|
|
|
let _: *mut Usize = core::intrinsics::transmute(my_int());
|
|
|
|
//~^ ERROR transmute from a type (`Usize`) to a pointer to that type (`*mut Usize`)
|
2016-03-24 22:48:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
useless();
|
|
|
|
crosspointer();
|
|
|
|
}
|