pub fn default<R>(a: &R)where R: Default + Debug + PartialEq + ?Sized,
Asserts that the value is default.
use common_testing::assert; #[test] fn test_1() { let a = 0; assert::default(&a); }