]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/type-sizes.rs
auto merge of #6053 : nikomatsakis/rust/fixme-2699, r=thestinger
[rust.git] / src / test / run-pass / type-sizes.rs
1 // Copyright 2012 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 extern mod std;
12 use std::sys::size_of;
13
14 struct t {a: u8, b: i8}
15 struct u {a: u8, b: i8, c: u8}
16 struct v {a: u8, b: i8, c: v2, d: u32}
17 struct v2 {u: char, v: u8}
18 struct w {a: int, b: ()}
19 struct x {a: int, b: (), c: ()}
20 struct y {x: int}
21
22 pub fn main() {
23     assert_eq!(size_of::<u8>(), 1 as uint);
24     assert_eq!(size_of::<u32>(), 4 as uint);
25     assert_eq!(size_of::<char>(), 4 as uint);
26     assert_eq!(size_of::<i8>(), 1 as uint);
27     assert_eq!(size_of::<i32>(), 4 as uint);
28     assert_eq!(size_of::<t>(), 2 as uint);
29     assert_eq!(size_of::<u>(), 3 as uint);
30     // Alignment causes padding before the char and the u32.
31
32     assert!(size_of::<v>() ==
33                 16 as uint);
34     assert_eq!(size_of::<int>(), size_of::<uint>());
35     assert_eq!(size_of::<w>(), size_of::<int>());
36     assert_eq!(size_of::<x>(), size_of::<int>());
37     assert_eq!(size_of::<int>(), size_of::<y>());
38 }