]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/packed-tuple-struct-size.rs
Auto merge of #28816 - petrochenkov:unistruct, r=nrc
[rust.git] / src / test / run-pass / packed-tuple-struct-size.rs
1 // Copyright 2013 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
12
13 use std::mem;
14
15 #[repr(packed)]
16 struct S4(u8,[u8;  3]);
17
18 #[repr(packed)]
19 struct S5(u8, u32);
20
21 #[repr(packed)]
22 struct S13(i64, f32, u8);
23
24 enum Foo {
25     Bar = 1,
26     Baz = 2
27 }
28
29 #[repr(packed)]
30 struct S3_Foo(u8, u16, Foo);
31
32 #[repr(packed)]
33 struct S7_Option(f32, u8, u16, Option<Box<f64>>);
34
35 pub fn main() {
36     assert_eq!(mem::size_of::<S4>(), 4);
37
38     assert_eq!(mem::size_of::<S5>(), 5);
39
40     assert_eq!(mem::size_of::<S13>(), 13);
41
42     assert_eq!(mem::size_of::<S3_Foo>(),
43                3 + mem::size_of::<Foo>());
44
45     assert_eq!(mem::size_of::<S7_Option>(),
46               7 + mem::size_of::<Option<Box<f64>>>());
47 }