aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2021-05-06 17:28:10 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2021-05-06 17:28:10 +0200
commite1c0cb3125e82fbccfd9a0cd8b5182ee25be9aed (patch)
treea2b4c50e4a092847633d1c99221cd30db8105006 /unit-tests
parent00ea030010341b59fead20942bc0ac4f0c7f76d2 (diff)
downloadsmtcoq-e1c0cb3125e82fbccfd9a0cd8b5182ee25be9aed.tar.gz
smtcoq-e1c0cb3125e82fbccfd9a0cd8b5182ee25be9aed.zip
Example for #92
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.