]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/transmute_ptr_to_ptr.rs
Rollup merge of #102072 - scottmcm:ptr-alignment-type, r=thomcc
[rust.git] / src / tools / clippy / tests / ui / transmute_ptr_to_ptr.rs
1 #![warn(clippy::transmute_ptr_to_ptr)]
2 #![allow(clippy::borrow_as_ptr)]
3
4 // Make sure we can modify lifetimes, which is one of the recommended uses
5 // of transmute
6
7 // Make sure we can do static lifetime transmutes
8 unsafe fn transmute_lifetime_to_static<'a, T>(t: &'a T) -> &'static T {
9     std::mem::transmute::<&'a T, &'static T>(t)
10 }
11
12 // Make sure we can do non-static lifetime transmutes
13 unsafe fn transmute_lifetime<'a, 'b, T>(t: &'a T, u: &'b T) -> &'b T {
14     std::mem::transmute::<&'a T, &'b T>(t)
15 }
16
17 struct LifetimeParam<'a> {
18     s: &'a str,
19 }
20
21 struct GenericParam<T> {
22     t: T,
23 }
24
25 fn transmute_ptr_to_ptr() {
26     let ptr = &1u32 as *const u32;
27     let mut_ptr = &mut 1u32 as *mut u32;
28     unsafe {
29         // pointer-to-pointer transmutes; bad
30         let _: *const f32 = std::mem::transmute(ptr);
31         let _: *mut f32 = std::mem::transmute(mut_ptr);
32         // ref-ref transmutes; bad
33         let _: &f32 = std::mem::transmute(&1u32);
34         let _: &f64 = std::mem::transmute(&1f32);
35         // ^ this test is here because both f32 and f64 are the same TypeVariant, but they are not
36         // the same type
37         let _: &mut f32 = std::mem::transmute(&mut 1u32);
38         let _: &GenericParam<f32> = std::mem::transmute(&GenericParam { t: 1u32 });
39     }
40
41     // these are recommendations for solving the above; if these lint we need to update
42     // those suggestions
43     let _ = ptr as *const f32;
44     let _ = mut_ptr as *mut f32;
45     let _ = unsafe { &*(&1u32 as *const u32 as *const f32) };
46     let _ = unsafe { &mut *(&mut 1u32 as *mut u32 as *mut f32) };
47
48     // transmute internal lifetimes, should not lint
49     let s = "hello world".to_owned();
50     let lp = LifetimeParam { s: &s };
51     let _: &LifetimeParam<'static> = unsafe { std::mem::transmute(&lp) };
52     let _: &GenericParam<&LifetimeParam<'static>> = unsafe { std::mem::transmute(&GenericParam { t: &lp }) };
53 }
54
55 // dereferencing raw pointers in const contexts, should not lint as it's unstable (issue 5959)
56 const _: &() = {
57     struct Zst;
58     let zst = &Zst;
59
60     unsafe { std::mem::transmute::<&'static Zst, &'static ()>(zst) }
61 };
62
63 fn main() {}