2022-10-30 10:47:35 +00:00
|
|
|
#![allow(dead_code, clippy::borrow_as_ptr, clippy::needless_lifetimes)]
|
2023-07-27 11:40:22 +00:00
|
|
|
//@no-rustfix
|
2015-11-11 14:28:31 +00:00
|
|
|
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![]
|
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::needless_lifetimes, clippy::transmute_ptr_to_ptr)]
|
|
|
|
#[warn(clippy::useless_transmute)]
|
2015-11-11 14:28:31 +00:00
|
|
|
unsafe fn _generic<'a, T, U: 'a>(t: &'a T) {
|
2022-03-18 04:58:03 +00:00
|
|
|
// FIXME: should lint
|
|
|
|
// let _: &'a T = core::intrinsics::transmute(t);
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2015-11-11 14:28:31 +00:00
|
|
|
let _: &'a U = core::intrinsics::transmute(t);
|
2016-06-27 14:12:48 +00:00
|
|
|
|
|
|
|
let _: *const T = core::intrinsics::transmute(t);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a reference to a pointer
|
|
|
|
//~| NOTE: `-D clippy::useless-transmute` implied by `-D warnings`
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-06-27 14:12:48 +00:00
|
|
|
let _: *mut T = core::intrinsics::transmute(t);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a reference to a pointer
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-06-27 14:12:48 +00:00
|
|
|
let _: *const U = core::intrinsics::transmute(t);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a reference to a pointer
|
2015-11-11 14:28:31 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[warn(clippy::useless_transmute)]
|
2016-03-24 22:48:38 +00:00
|
|
|
fn useless() {
|
2015-11-11 14:28:31 +00:00
|
|
|
unsafe {
|
|
|
|
let _: Vec<i32> = core::intrinsics::transmute(my_vec());
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2015-11-11 14:28:31 +00:00
|
|
|
let _: Vec<i32> = core::mem::transmute(my_vec());
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2015-11-11 14:28:31 +00:00
|
|
|
let _: Vec<i32> = std::intrinsics::transmute(my_vec());
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2015-11-11 14:28:31 +00:00
|
|
|
let _: Vec<i32> = std::mem::transmute(my_vec());
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2015-11-11 14:28:31 +00:00
|
|
|
let _: Vec<i32> = my_transmute(my_vec());
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-06-28 12:08:08 +00:00
|
|
|
let _: *const usize = std::mem::transmute(5_isize);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from an integer to a pointer
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
let _ = 5_isize as *const usize;
|
2016-07-04 00:22:57 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
let _: *const usize = std::mem::transmute(1 + 1usize);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from an integer to a pointer
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
let _ = (1 + 1_usize) as *const usize;
|
2015-11-11 14:28:31 +00:00
|
|
|
}
|
2022-03-18 04:58:03 +00:00
|
|
|
|
|
|
|
unsafe fn _f<'a, 'b>(x: &'a u32) -> &'b u32 {
|
|
|
|
std::mem::transmute(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn _f2<'a, 'b>(x: *const (dyn Iterator<Item = u32> + 'a)) -> *const (dyn Iterator<Item = u32> + 'b) {
|
|
|
|
std::mem::transmute(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn _f3<'a, 'b>(x: fn(&'a u32)) -> fn(&'b u32) {
|
|
|
|
std::mem::transmute(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn _f4<'a, 'b>(x: std::borrow::Cow<'a, str>) -> std::borrow::Cow<'b, str> {
|
|
|
|
std::mem::transmute(x)
|
|
|
|
}
|
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);
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[warn(clippy::crosspointer_transmute)]
|
2016-03-24 22:48:38 +00:00
|
|
|
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);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a type (`*const Usize`) to the type that it points to (
|
|
|
|
//~| NOTE: `-D clippy::crosspointer-transmute` implied by `-D warnings`
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-06-28 12:08:08 +00:00
|
|
|
let _: Usize = core::intrinsics::transmute(int_mut_ptr);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a type (`*mut Usize`) to the type that it points to (`U
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-06-28 12:08:08 +00:00
|
|
|
let _: *const Usize = core::intrinsics::transmute(my_int());
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a type (`Usize`) to a pointer to that type (`*const Usi
|
2017-02-08 13:58:07 +00:00
|
|
|
|
2016-06-28 12:08:08 +00:00
|
|
|
let _: *mut Usize = core::intrinsics::transmute(my_int());
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a type (`Usize`) to a pointer to that type (`*mut Usize
|
2016-03-24 22:48:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[warn(clippy::transmute_int_to_bool)]
|
2017-10-02 15:23:24 +00:00
|
|
|
fn int_to_bool() {
|
|
|
|
let _: bool = unsafe { std::mem::transmute(0_u8) };
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `u8` to a `bool`
|
|
|
|
//~| NOTE: `-D clippy::transmute-int-to-bool` implied by `-D warnings`
|
2017-10-02 15:23:24 +00:00
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[warn(clippy::transmute_int_to_float)]
|
2020-08-28 14:10:16 +00:00
|
|
|
mod int_to_float {
|
|
|
|
fn test() {
|
|
|
|
let _: f32 = unsafe { std::mem::transmute(0_u32) };
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `u32` to a `f32`
|
|
|
|
//~| NOTE: `-D clippy::transmute-int-to-float` implied by `-D warnings`
|
2020-08-28 14:10:16 +00:00
|
|
|
let _: f32 = unsafe { std::mem::transmute(0_i32) };
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `i32` to a `f32`
|
2020-08-28 14:10:16 +00:00
|
|
|
let _: f64 = unsafe { std::mem::transmute(0_u64) };
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `u64` to a `f64`
|
2020-08-28 14:10:16 +00:00
|
|
|
let _: f64 = unsafe { std::mem::transmute(0_i64) };
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `i64` to a `f64`
|
2020-08-28 14:10:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mod issue_5747 {
|
|
|
|
const VALUE32: f32 = unsafe { std::mem::transmute(0_u32) };
|
|
|
|
const VALUE64: f64 = unsafe { std::mem::transmute(0_i64) };
|
|
|
|
|
|
|
|
const fn from_bits_32(v: i32) -> f32 {
|
|
|
|
unsafe { std::mem::transmute(v) }
|
|
|
|
}
|
|
|
|
|
|
|
|
const fn from_bits_64(v: u64) -> f64 {
|
|
|
|
unsafe { std::mem::transmute(v) }
|
|
|
|
}
|
|
|
|
}
|
2017-10-02 15:23:24 +00:00
|
|
|
}
|
|
|
|
|
2021-10-11 22:46:49 +00:00
|
|
|
mod num_to_bytes {
|
|
|
|
fn test() {
|
|
|
|
unsafe {
|
|
|
|
let _: [u8; 1] = std::mem::transmute(0u8);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `u8` to a `[u8; 1]`
|
|
|
|
//~| NOTE: `-D clippy::transmute-num-to-bytes` implied by `-D warnings`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 4] = std::mem::transmute(0u32);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `u32` to a `[u8; 4]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 16] = std::mem::transmute(0u128);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `u128` to a `[u8; 16]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 1] = std::mem::transmute(0i8);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `i8` to a `[u8; 1]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 4] = std::mem::transmute(0i32);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `i32` to a `[u8; 4]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 16] = std::mem::transmute(0i128);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `i128` to a `[u8; 16]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 4] = std::mem::transmute(0.0f32);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `f32` to a `[u8; 4]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 8] = std::mem::transmute(0.0f64);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `f64` to a `[u8; 8]`
|
2021-10-11 22:46:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
const fn test_const() {
|
|
|
|
unsafe {
|
|
|
|
let _: [u8; 1] = std::mem::transmute(0u8);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `u8` to a `[u8; 1]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 4] = std::mem::transmute(0u32);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `u32` to a `[u8; 4]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 16] = std::mem::transmute(0u128);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `u128` to a `[u8; 16]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 1] = std::mem::transmute(0i8);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `i8` to a `[u8; 1]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 4] = std::mem::transmute(0i32);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `i32` to a `[u8; 4]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 16] = std::mem::transmute(0i128);
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `i128` to a `[u8; 16]`
|
2021-10-11 22:46:49 +00:00
|
|
|
let _: [u8; 4] = std::mem::transmute(0.0f32);
|
|
|
|
let _: [u8; 8] = std::mem::transmute(0.0f64);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-30 18:31:50 +00:00
|
|
|
fn bytes_to_str(mb: &mut [u8]) {
|
|
|
|
const B: &[u8] = b"";
|
|
|
|
|
|
|
|
let _: &str = unsafe { std::mem::transmute(B) };
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `&[u8]` to a `&str`
|
|
|
|
//~| NOTE: `-D clippy::transmute-bytes-to-str` implied by `-D warnings`
|
2017-10-29 01:27:45 +00:00
|
|
|
let _: &mut str = unsafe { std::mem::transmute(mb) };
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `&mut [u8]` to a `&mut str`
|
2022-03-30 18:31:50 +00:00
|
|
|
const _: &str = unsafe { std::mem::transmute(B) };
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: transmute from a `&[u8]` to a `&str`
|
2017-10-29 01:27:45 +00:00
|
|
|
}
|
|
|
|
|
2018-12-09 22:26:16 +00:00
|
|
|
fn main() {}
|