use std::mem; pub struct Thing(pub usize); #[test] fn test_iter() { assert_eq!(0, mem::size_of::>()); assert_eq!(1, mem::align_of::>()); }