]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/packed-struct-size.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / packed-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 use std::mem;
13
14 #[repr(packed)]
15 struct S4 {
16     a: u8,
17     b: [u8;  3],
18 }
19
20 #[repr(packed)]
21 struct S5 {
22     a: u8,
23     b: u32
24 }
25
26 #[repr(packed)]
27 struct S13 {
28     a: i64,
29     b: f32,
30     c: u8,
31 }
32
33 enum Foo {
34     Bar = 1,
35     Baz = 2
36 }
37
38 #[repr(packed)]
39 struct S3_Foo {
40     a: u8,
41     b: u16,
42     c: Foo
43 }
44
45 #[repr(packed)]
46 struct S7_Option {
47     a: f32,
48     b: u8,
49     c: u16,
50     d: Option<Box<f64>>
51 }
52
53 // Placing packed structs in statics should work
54 static TEST_S4: S4 = S4 { a: 1, b: [2, 3, 4] };
55 static TEST_S5: S5 = S5 { a: 3, b: 67 };
56 static TEST_S3_Foo: S3_Foo = S3_Foo { a: 1, b: 2, c: Foo::Baz };
57
58
59 pub fn main() {
60     assert_eq!(mem::size_of::<S4>(), 4);
61     assert_eq!(mem::size_of::<S5>(), 5);
62     assert_eq!(mem::size_of::<S13>(), 13);
63     assert_eq!(mem::size_of::<S3_Foo>(), 3 + mem::size_of::<Foo>());
64     assert_eq!(mem::size_of::<S7_Option>(), 7 + mem::size_of::<Option<Box<f64>>>());
65 }