1#[test] 2fn test_box() { 3 use crate::*; 4 let boxed_value: Box<i32> = boxed!(10); 5 assert_eq!(boxed_value, Box::new(10)); 6}