use const_lru::ConstLru; #[test] #[should_panic] fn u128_i_panic() { let _c: ConstLru = ConstLru::new(); } #[test] #[should_panic] fn cap_oob_panic() { let _c: ConstLru = ConstLru::new(); }