Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion 13 src/libcore/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,18 @@ macro_rules! assert_eq {
}
}
}
})
});
($left:expr , $right:expr, $($arg:tt)*) => ({
match (&($left), &($right)) {
(left_val, right_val) => {
if !(*left_val == *right_val) {
panic!("assertion failed: `(left == right)` \
(left: `{:?}`, right: `{:?}`): {}", left_val, right_val,
format_args!($($arg)*))
}
}
}
});
}

/// Ensure that a boolean expression is `true` at runtime.
Expand Down
3 changes: 3 additions & 0 deletions 3 src/test/run-pass/assert-eq-macro-success.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ pub fn main() {
assert_eq!("abc".to_string(),"abc".to_string());
assert_eq!(Box::new(Point{x:34}),Box::new(Point{x:34}));
assert_eq!(&Point{x:34},&Point{x:34});
assert_eq!(42, 42, "foo bar");
assert_eq!(42, 42, "a {} c", "b");
assert_eq!(42, 42, "{x}, {y}, {z}", x = 1, y = 2, z = 3);
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.