1 2 3 4 5 6 7
use ach_lazy::Lazy; #[test] fn base() { static CELL: Lazy<usize> = Lazy::new(|| 1); assert_eq!(*CELL, 1); }