1//! `Arc` and `Rc` with C++ `std::shared_ptr`-like semantics. 2//! 3//! Currently just a good idea. Well, an idea, anyway. 4#[cfg(test)] 5mod tests { 6 #[test] 7 fn it_works() { 8 assert_eq!(2 + 2, 4); 9 } 10}