Macro more_asserts::assert_ne [] [src]

macro_rules! assert_ne {
    ($left:expr, $right:expr) => { ... };
}

Panics if the two expressions are equal. Requires that the types be comparable with !=.

Prints the values out on panic.