macro_rules! claim_eq {
    ($left:expr, $right:expr $(,)?) => { ... };
    ($left:expr, $right:expr, $($arg:tt),+) => { ... };
}
Expand description

Ensure the first two arguments are equal, just like assert_eq!, otherwise reports an error. Used only in testing.