We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bf5599 commit 32688b2Copy full SHA for 32688b2
1 file changed
crates/lean_compiler/src/a_simplify_lang.rs
@@ -2535,9 +2535,7 @@ fn simplify_lines(
2535
));
2536
}
2537
2538
- if !matches!(&left, SimpleExpr::Memory(_))
2539
- && !matches!(&right, SimpleExpr::Memory(_))
2540
- {
+ if !matches!(&left, SimpleExpr::Memory(_)) && !matches!(&right, SimpleExpr::Memory(_)) {
2541
return Err(format!("Unsupported equality assertion: {left:?}, {right:?}"));
2542
2543
res.push(SimpleLine::AssertEq {
0 commit comments