diff options
| author | Attila Gáspár | 2020-05-19 19:12:03 +0200 |
|---|---|---|
| committer | Attila Gáspár | 2020-05-19 22:22:51 +0200 |
| commit | 85d7906cb22d66debaf68d0e5713336deb724305 (patch) | |
| tree | 7a6d65513b74ed7094fd768a7f49dfee68daa1be /test-suite | |
| parent | ed0f2f08e31ee4e645aa6e52970ddefc60f1f4f9 (diff) | |
Delay evaluating arguments of the "exists" tactic
Diffstat (limited to 'test-suite')
| -rw-r--r-- | test-suite/bugs/closed/bug_12365.v | 8 |
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. |
