2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a reference to a pointer
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:24:23
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: *const T = core::intrinsics::transmute(t);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `t as *const T`
|
2022-06-04 11:34:07 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::useless-transmute` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::useless_transmute)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a reference to a pointer
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:28:21
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: *mut T = core::intrinsics::transmute(t);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `t as *const T as *mut T`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a reference to a pointer
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:31:23
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: *const U = core::intrinsics::transmute(t);
|
2017-07-21 08:40:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `t as *const T as *const U`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:38:27
|
2017-05-11 14:55:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Vec<i32> = core::intrinsics::transmute(my_vec());
|
2017-05-11 14:55:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:41:27
|
2017-05-11 14:55:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Vec<i32> = core::mem::transmute(my_vec());
|
2017-05-11 14:55:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:44:27
|
2017-05-11 14:55:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Vec<i32> = std::intrinsics::transmute(my_vec());
|
2017-05-11 14:55:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:47:27
|
2017-05-11 14:55:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Vec<i32> = std::mem::transmute(my_vec());
|
2017-05-11 14:55:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a type (`std::vec::Vec<i32>`) to itself
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:50:27
|
2017-05-11 14:55:55 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: Vec<i32> = my_transmute(my_vec());
|
2017-05-11 14:55:55 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from an integer to a pointer
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:53:31
|
2018-12-10 05:27:19 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | let _: *const usize = std::mem::transmute(5_isize);
|
2018-12-10 05:27:19 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `5_isize as *const usize`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from an integer to a pointer
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:58:31
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | let _: *const usize = std::mem::transmute(1 + 1usize);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(1 + 1usize) as *const usize`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a type (`*const Usize`) to the type that it points to (`Usize`)
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:90:24
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | let _: Usize = core::intrinsics::transmute(int_const_ptr);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::crosspointer-transmute` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::crosspointer_transmute)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a type (`*mut Usize`) to the type that it points to (`Usize`)
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:94:24
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | let _: Usize = core::intrinsics::transmute(int_mut_ptr);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a type (`Usize`) to a pointer to that type (`*const Usize`)
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:97:31
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | let _: *const Usize = core::intrinsics::transmute(my_int());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-08-01 15:54:21 +00:00
|
|
|
error: transmute from a type (`Usize`) to a pointer to that type (`*mut Usize`)
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:100:29
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | let _: *mut Usize = core::intrinsics::transmute(my_int());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2017-10-02 15:23:24 +00:00
|
|
|
error: transmute from a `u8` to a `bool`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:107:28
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | let _: bool = unsafe { std::mem::transmute(0_u8) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `0_u8 != 0`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::transmute-int-to-bool` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::transmute_int_to_bool)]`
|
2017-10-02 15:23:24 +00:00
|
|
|
|
|
|
|
error: transmute from a `u32` to a `f32`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:115:31
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
LL | let _: f32 = unsafe { std::mem::transmute(0_u32) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `f32::from_bits(0_u32)`
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::transmute-int-to-float` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::transmute_int_to_float)]`
|
2017-10-02 15:23:24 +00:00
|
|
|
|
|
|
|
error: transmute from a `i32` to a `f32`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:118:31
|
2020-08-28 14:10:16 +00:00
|
|
|
|
|
|
|
|
LL | let _: f32 = unsafe { std::mem::transmute(0_i32) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `f32::from_bits(0_i32 as u32)`
|
|
|
|
|
|
|
|
error: transmute from a `u64` to a `f64`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:120:31
|
2020-08-28 14:10:16 +00:00
|
|
|
|
|
|
|
|
LL | let _: f64 = unsafe { std::mem::transmute(0_u64) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `f64::from_bits(0_u64)`
|
|
|
|
|
|
|
|
error: transmute from a `i64` to a `f64`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:122:31
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2020-08-28 14:10:16 +00:00
|
|
|
LL | let _: f64 = unsafe { std::mem::transmute(0_i64) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `f64::from_bits(0_i64 as u64)`
|
2017-10-02 15:23:24 +00:00
|
|
|
|
2021-10-21 11:11:36 +00:00
|
|
|
error: transmute from a `u8` to a `[u8; 1]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:143:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 1] = std::mem::transmute(0u8);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0u8.to_ne_bytes()`
|
|
|
|
|
|
|
|
|
= note: `-D clippy::transmute-num-to-bytes` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::transmute_num_to_bytes)]`
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
error: transmute from a `u32` to a `[u8; 4]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:146:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 4] = std::mem::transmute(0u32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0u32.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `u128` to a `[u8; 16]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:148:31
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 16] = std::mem::transmute(0u128);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0u128.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `i8` to a `[u8; 1]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:150:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 1] = std::mem::transmute(0i8);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0i8.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `i32` to a `[u8; 4]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:152:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 4] = std::mem::transmute(0i32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0i32.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `i128` to a `[u8; 16]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:154:31
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 16] = std::mem::transmute(0i128);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0i128.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `f32` to a `[u8; 4]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:156:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 4] = std::mem::transmute(0.0f32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0.0f32.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `f64` to a `[u8; 8]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:158:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 8] = std::mem::transmute(0.0f64);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0.0f64.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `u8` to a `[u8; 1]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:164:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 1] = std::mem::transmute(0u8);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0u8.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `u32` to a `[u8; 4]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:166:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 4] = std::mem::transmute(0u32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0u32.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `u128` to a `[u8; 16]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:168:31
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 16] = std::mem::transmute(0u128);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0u128.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `i8` to a `[u8; 1]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:170:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 1] = std::mem::transmute(0i8);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0i8.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `i32` to a `[u8; 4]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:172:30
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 4] = std::mem::transmute(0i32);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0i32.to_ne_bytes()`
|
|
|
|
|
|
|
|
error: transmute from a `i128` to a `[u8; 16]`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:174:31
|
2021-10-21 11:11:36 +00:00
|
|
|
|
|
|
|
|
LL | let _: [u8; 16] = std::mem::transmute(0i128);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `to_ne_bytes()`: `0i128.to_ne_bytes()`
|
|
|
|
|
2017-10-29 01:27:45 +00:00
|
|
|
error: transmute from a `&[u8]` to a `&str`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:185:28
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
LL | let _: &str = unsafe { std::mem::transmute(B) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::str::from_utf8(B).unwrap()`
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
= note: `-D clippy::transmute-bytes-to-str` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::transmute_bytes_to_str)]`
|
2017-10-29 01:27:45 +00:00
|
|
|
|
|
|
|
error: transmute from a `&mut [u8]` to a `&mut str`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:188:32
|
2018-12-27 15:57:55 +00:00
|
|
|
|
|
|
|
|
LL | let _: &mut str = unsafe { std::mem::transmute(mb) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::str::from_utf8_mut(mb).unwrap()`
|
2017-10-29 01:27:45 +00:00
|
|
|
|
2022-04-07 17:39:59 +00:00
|
|
|
error: transmute from a `&[u8]` to a `&str`
|
2024-02-27 14:25:18 +00:00
|
|
|
--> tests/ui/transmute.rs:190:30
|
2022-04-07 17:39:59 +00:00
|
|
|
|
|
|
|
|
LL | const _: &str = unsafe { std::mem::transmute(B) };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `std::str::from_utf8_unchecked(B)`
|
|
|
|
|
2024-01-25 18:17:36 +00:00
|
|
|
error: aborting due to 36 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|