]> git.lizzy.rs Git - rust.git/blob - src/test/ui/print_type_sizes/repr-align.rs
Auto merge of #41433 - estebank:constructor, r=michaelwoerister
[rust.git] / src / test / ui / print_type_sizes / repr-align.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // compile-flags: -Z print-type-sizes
12
13 // This file illustrates how padding is handled: alignment
14 // requirements can lead to the introduction of padding, either before
15 // fields or at the end of the structure as a whole.
16 //
17 // It avoids using u64/i64 because on some targets that is only 4-byte
18 // aligned (while on most it is 8-byte aligned) and so the resulting
19 // padding and overall computed sizes can be quite different.
20 #![feature(attr_literals)]
21 #![feature(repr_align)]
22 #![allow(dead_code)]
23
24 #[repr(align(16))]
25 #[derive(Default)]
26 struct A(i32);
27
28 enum E {
29     A(i32),
30     B(A)
31 }
32
33 #[derive(Default)]
34 struct S {
35     a: i32,
36     b: i32,
37     c: A,
38     d: i8,
39 }
40
41 fn main() {
42     let _s: S = Default::default();
43 }