#![feature(generic_associated_types)] mod common; use std::cell::Cell; use common::method::eq::*; #[cfg(feature = "std")] #[test] fn can_serialize_cell() { const LEN: usize = 8; test_serialize_exact::, LEN>(Cell::new(u64::MIN)); }