#![cfg_attr(not(feature = "std"), no_std)] #![allow(incomplete_features)] #![feature(generic_associated_types)] mod common; use common::method::eq::*; use common::empty_struct::*; #[test] fn can_serialize_empty_struct() { test_serialize_exact::(EmptyStruct::new()); }