We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc4c67d commit cdbf015Copy full SHA for cdbf015
src/libcore/macros.rs
@@ -86,7 +86,7 @@ macro_rules! assert {
86
#[stable(feature = "rust1", since = "1.0.0")]
87
macro_rules! assert_eq {
88
($left:expr , $right:expr) => ({
89
- match (&($left), &($right)) {
+ match (&$left, &$right) {
90
(left_val, right_val) => {
91
if !(*left_val == *right_val) {
92
panic!("assertion failed: `(left == right)` \
0 commit comments