aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2021-05-06 17:33:13 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2021-05-06 17:33:13 +0200
commitd5d96bced453c37cdabf603a73c53c574b8c6cb2 (patch)
treee5fbfcd8fe9fdbcee11fd4ef673984fbcad1a1f5
parentd0d74fb4f76e611cc136054639aa6c506f9dbda1 (diff)
parent443d9a1e1dc4459adb91e47dccc712b7ff733c8f (diff)
downloadsmtcoq-d5d96bced453c37cdabf603a73c53c574b8c6cb2.tar.gz
smtcoq-d5d96bced453c37cdabf603a73c53c574b8c6cb2.zip
Merge branch 'coq-8.10' of github.com:smtcoq/smtcoq into coq-8.11
-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.