]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/multiple-reprs.rs
Remove the in-tree `flate` crate
[rust.git] / src / test / run-pass / multiple-reprs.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
12 use std::mem::size_of;
13
14 // The two enums that follow are designed so that bugs trigger layout optimization.
15 // Specifically, if either of the following reprs used here is not detected by the compiler,
16 // then the sizes will be wrong.
17
18 #[repr(C, u8)]
19 enum E1 {
20     A(u8, u16, u8),
21     B(u8, u16, u8)
22 }
23
24 #[repr(u8, C)]
25 enum E2 {
26     A(u8, u16, u8),
27     B(u8, u16, u8)
28 }
29
30 // From pr 37429
31
32 #[repr(C,packed)]
33 pub struct p0f_api_query {
34     pub magic: u32,
35     pub addr_type: u8,
36     pub addr: [u8; 16],
37 }
38
39 pub fn main() {
40     assert_eq!(size_of::<E1>(), 6);
41     assert_eq!(size_of::<E2>(), 6);
42     assert_eq!(size_of::<p0f_api_query>(), 21);
43 }