]> git.lizzy.rs Git - rust.git/blob - src/test/ui/monomorphize-abi-alignment.rs
Rollup merge of #80733 - steffahn:prettify_pin_links, r=jyn514
[rust.git] / src / test / ui / monomorphize-abi-alignment.rs
1 // run-pass
2
3 #![allow(non_upper_case_globals)]
4 /*!
5  * On x86_64-linux-gnu and possibly other platforms, structs get 8-byte "preferred" alignment,
6  * but their "ABI" alignment (i.e., what actually matters for data layout) is the largest alignment
7  * of any field. (Also, `u64` has 8-byte ABI alignment; this is not always true).
8  *
9  * On such platforms, if monomorphize uses the "preferred" alignment, then it will unify
10  * `A` and `B`, even though `S<A>` and `S<B>` have the field `t` at different offsets,
11  * and apply the wrong instance of the method `unwrap`.
12  */
13
14 #[derive(Copy, Clone)]
15 struct S<T> { i:u8, t:T }
16
17 impl<T> S<T> {
18     fn unwrap(self) -> T {
19         self.t
20     }
21 }
22
23 #[derive(Copy, Clone, PartialEq, Debug)]
24 struct A((u32, u32));
25
26 #[derive(Copy, Clone, PartialEq, Debug)]
27 struct B(u64);
28
29 pub fn main() {
30     static Ca: S<A> = S { i: 0, t: A((13, 104)) };
31     static Cb: S<B> = S { i: 0, t: B(31337) };
32     assert_eq!(Ca.unwrap(), A((13, 104)));
33     assert_eq!(Cb.unwrap(), B(31337));
34 }