aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--unit-tests/Tests_verit_tactics.v12
1 files changed, 12 insertions, 0 deletions
diff --git a/unit-tests/Tests_verit_tactics.v b/unit-tests/Tests_verit_tactics.v
index daff848..0e2509a 100644
--- a/unit-tests/Tests_verit_tactics.v
+++ b/unit-tests/Tests_verit_tactics.v
@@ -1329,3 +1329,15 @@ Section CompDecOnInterpretedType.
Proof. verit. Qed.
End CompDecOnInterpretedType.
+
+
+
+Section Issue92.
+ Variable F : 0 = 1%Z.
+
+ Goal false = false.
+ Proof. verit_no_check. Qed.
+
+ Goal 0 = 2.
+ Proof. verit_no_check. Abort.
+End Issue92.