1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/// `box_!(x)` => `Box::new(x)`
#[macro_export]
macro_rules! box_ {
    ($x:expr) => {
        Box::new($x)
    };
}

/// `b0x_!(x)` => `Box::new(x)`
#[macro_export]
macro_rules! b0x {
    ($x:expr) => {
        Box::new($x)
    };
}

/// `bx_!(x)` => `Box::new(x)`
#[macro_export]
macro_rules! bx {
    ($x:expr) => {
        Box::new($x)
    };
}

/// `b_!(x)` => `Box::new(x)`
#[macro_export]
macro_rules! b {
    ($x:expr) => {
        Box::new($x)
    };
}

#[cfg(test)]
mod test {
    #[test]
    fn box_test() {
        let _: Box<()> = box_!(());
    }

    #[test]
    fn b0x_test() {
        let _: Box<()> = b0x!(());
    }

    #[test]
    fn bx_test() {
        let _: Box<()> = bx!(());
    }

    #[test]
    fn b_test() {
        let _: Box<()> = b!(());
    }
}