]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-1445-restrict-constants-in-patterns/allow-hide-behind-indirect-unsafe-ptr-param.rs
Rollup merge of #100030 - WaffleLapkin:nice_pointer_sis, r=scottmcm
[rust.git] / src / test / ui / rfc-1445-restrict-constants-in-patterns / allow-hide-behind-indirect-unsafe-ptr-param.rs
1 // Test explores how `#[structral_match]` behaves in tandem with
2 // `*const` and `*mut` pointers.
3
4 // run-pass
5
6 #![warn(pointer_structural_match)]
7
8 struct NoDerive(#[allow(unused_tuple_struct_fields)] i32);
9
10 // This impl makes NoDerive irreflexive
11 // (which doesn't matter here because `<*const T>::eq` won't recur on `T`).
12 impl PartialEq for NoDerive { fn eq(&self, _: &Self) -> bool { false } }
13
14 impl Eq for NoDerive { }
15
16 #[derive(PartialEq, Eq)]
17 struct WrapParam<X>(*const X);
18
19 const WRAP_UNSAFE_PARAM: & &WrapParam<NoDerive> = & &WrapParam(std::ptr::null());
20
21 fn main() {
22     match WRAP_UNSAFE_PARAM {
23         WRAP_UNSAFE_PARAM => { println!("WRAP_UNSAFE_PARAM correctly matched itself"); }
24         _ => { panic!("WRAP_UNSAFE_PARAM did not match itself"); }
25     }
26 }