Skip to content

Commit a13188d

Browse files
committed
update cmp
1 parent 881394c commit a13188d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

testcrate/tests/cmp.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ macro_rules! cmp {
1818
};
1919
let cmp1 = $fn($x, $y);
2020
if cmp0 != cmp1 {
21-
panic!("{}({}, {}): std: {}, builtins: {}", stringify!($fn_builtins), $x, $y, cmp0, cmp1);
21+
panic!(
22+
"{}({:?}, {:?}): std: {:?}, builtins: {:?}",
23+
stringify!($fn_builtins), $x, $y, cmp0, cmp1
24+
);
2225
}
2326
)*
2427
};

0 commit comments

Comments
 (0)