macro_rules! a_not_id {
( $left:expr , $right:expr $(,)? ) => { ... };
($left:expr, $right:expr, $($arg:tt)*) => { ... };
}Expand description
Asserts that two expressions are not identical to each other (using PartialEq). Prints nice diff.