aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2021-09-17 18:13:27 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2021-09-17 18:13:27 +0200
commitc5db7f8dcf98fc354737ad15dc783c2e9241efb5 (patch)
tree5614d0ef501b41b82e87e8617684813749d7ab11 /unit-tests
parentd7338689e43a124ac31c17437ef9b98ccc4848ac (diff)
downloadsmtcoq-c5db7f8dcf98fc354737ad15dc783c2e9241efb5.tar.gz
smtcoq-c5db7f8dcf98fc354737ad15dc783c2e9241efb5.zip
Solve bug in prop2bool
Diffstat (limited to 'unit-tests')
-rw-r--r--unit-tests/Tests_verit_tactics.v6
1 files changed, 6 insertions, 0 deletions
diff --git a/unit-tests/Tests_verit_tactics.v b/unit-tests/Tests_verit_tactics.v
index 16790f6..34b5dfd 100644
--- a/unit-tests/Tests_verit_tactics.v
+++ b/unit-tests/Tests_verit_tactics.v
@@ -1363,3 +1363,9 @@ Section Vauto.
Goal eqb_of_compdec HA a b \/ search b l.
Proof. verit_no_check. Qed.
End Vauto.
+
+
+Section PropToBool.
+ Goal (forall (x x0 : bool) (x1 x2 : list bool), x :: x1 = x0 :: x2 -> x = x0) -> true.
+ Proof. verit. Qed.
+End PropToBool.