aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2021-05-06 17:29:25 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2021-05-06 17:29:25 +0200
commit443d9a1e1dc4459adb91e47dccc712b7ff733c8f (patch)
treebd6f307500a762726cd01d750bac09079af2abd2 /unit-tests
parentb4ec1a52e0de0933ab387844551a11baf7bc8df1 (diff)
parente1c0cb3125e82fbccfd9a0cd8b5182ee25be9aed (diff)
downloadsmtcoq-443d9a1e1dc4459adb91e47dccc712b7ff733c8f.tar.gz
smtcoq-443d9a1e1dc4459adb91e47dccc712b7ff733c8f.zip
Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10
Diffstat (limited to 'unit-tests')
-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.