Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
7h3kk1d committed Oct 21, 2024
1 parent b42c613 commit 9a918ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/haz3lcore/statics/TermBase.re
Original file line number Diff line number Diff line change
Expand Up @@ -808,8 +808,8 @@ and Typ: {
| (_, Parens(t2)) => eq_internal(n, t1, t2)
| (TupLabel(label1, t1'), TupLabel(label2, t2')) =>
eq_internal(n, label1, label2) && eq_internal(n, t1', t2')
| (TupLabel(_, t1), _) => false // TODO Verify this
| (_, TupLabel(_, t2)) => false
| (TupLabel(_, _), _) => false // TODO Verify this
| (_, TupLabel(_, _)) => false
| (Rec(x1, t1), Rec(x2, t2))
| (Forall(x1, t1), Forall(x2, t2)) =>
let alpha_subst =
Expand Down

0 comments on commit 9a918ef

Please sign in to comment.