Skip to content

Commit 32688b2

Browse files
committed
fmt
1 parent 4bf5599 commit 32688b2

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

crates/lean_compiler/src/a_simplify_lang.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2535,9 +2535,7 @@ fn simplify_lines(
25352535
));
25362536
}
25372537
}
2538-
if !matches!(&left, SimpleExpr::Memory(_))
2539-
&& !matches!(&right, SimpleExpr::Memory(_))
2540-
{
2538+
if !matches!(&left, SimpleExpr::Memory(_)) && !matches!(&right, SimpleExpr::Memory(_)) {
25412539
return Err(format!("Unsupported equality assertion: {left:?}, {right:?}"));
25422540
}
25432541
res.push(SimpleLine::AssertEq {

0 commit comments

Comments
 (0)