]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/nullable-pointer-size.rs
9ce68fa8ffcdb3453a8e978c68f17f3ea8e8dea1
[rust.git] / src / test / run-pass / nullable-pointer-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 #[feature(macro_rules)];
12
13 use std::mem;
14
15 enum E<T> { Thing(int, T), Nothing((), ((), ()), [i8, ..0]) }
16 struct S<T>(int, T);
17
18 // These are macros so we get useful assert messages.
19
20 macro_rules! check_option {
21     ($T:ty) => {
22         assert_eq!(mem::size_of::<Option<$T>>(), mem::size_of::<$T>());
23     }
24 }
25
26 macro_rules! check_fancy {
27     ($T:ty) => {
28         assert_eq!(mem::size_of::<E<$T>>(), mem::size_of::<S<$T>>());
29     }
30 }
31
32 macro_rules! check_type {
33     ($T:ty) => {{
34         check_option!($T);
35         check_fancy!($T);
36     }}
37 }
38
39 pub fn main() {
40     check_type!(&'static int);
41     check_type!(~int);
42     check_type!(@int);
43     check_type!(~str);
44     check_type!(Vec<int> );
45     check_type!(extern fn());
46 }