1 2 3 4 5 6 7
use crate::*; #[test] fn test_rc() { let my_rc: Rc<i32> = rc!(5); assert_eq!(*my_rc, 5); }