-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
assert_eq!(a,b) fails to compile for slices while assert!(a == b) works fine #51206
Comments
|
Yes, but |
It does, but it does other things first. Macro expanded and then hand-cleaned: fn main() {
if !(foo(&[], 10) == (&[], 0)) {
panic!();
};
match (&foo(&[], 10), &(&[], 0)) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
panic!()
}
}
};
} |
@gnzlbg There is impl<A, B, C, D, E, F, G, H> PartialEq<(A, B, C, D, E, F, G, H)> for (A, B, C, D, E, F, G, H) where
A: PartialEq<A>,
B: PartialEq<B>,
C: PartialEq<C>,
D: PartialEq<D>,
E: PartialEq<E>,
F: PartialEq<F>,
G: PartialEq<G>,
H: PartialEq<H> + ?Sized, note that the LHS and RHS are equal types. |
@kennytm but how come that |
@gnzlbg match (&left, &right) {
(l, r) => {
if !(*l == *r) {
panic!("...");
}
}
} Probably the |
This isn't a regression, is it? Pretty sure this never worked. As for why, the macro needs to bind the two expressions to variables (by reference) to be able to not only compare but also print them (in case of a mismatch) - this is why OTOH, in |
We can probably make // perma-unstable
pub fn check_assert_eq<'a, A, B>(a: &'a A, b: &'a B) -> Result<(), (&'a A, &'a B)>
where A: PartialEq<B>
{
if a == b { Ok(()) } else { Err((a, b)) }
}
macro_rules! assert_eq {
($left:expr, $right:expr) => ({
if let Err((left_val, right_val)) = check_assert_eq(&$left, &$right) {
panic!(r#"assertion failed: `(left == right)`
left: `{:?}`,
right: `{:?}`"#, left_val, right_val);
}
});
} |
cc #44838. |
Example (playground):
The text was updated successfully, but these errors were encountered: