aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorAttila Gáspár2020-05-19 19:12:03 +0200
committerAttila Gáspár2020-05-19 22:22:51 +0200
commit85d7906cb22d66debaf68d0e5713336deb724305 (patch)
tree7a6d65513b74ed7094fd768a7f49dfee68daa1be /test-suite
parented0f2f08e31ee4e645aa6e52970ddefc60f1f4f9 (diff)
Delay evaluating arguments of the "exists" tactic
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_12365.v8
1 files changed, 8 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_12365.v b/test-suite/bugs/closed/bug_12365.v
new file mode 100644
index 0000000000..a8e2bb459d
--- /dev/null
+++ b/test-suite/bugs/closed/bug_12365.v
@@ -0,0 +1,8 @@
+Parameter a b : nat.
+Parameter p : a = b.
+
+Goal exists (_ : True) (_ : exists x, x = b), True.
+Proof.
+ exists I, (ex_intro _ a p).
+ exact I.
+Qed.