aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorPierre-Marie Pédrot2020-02-04 09:46:02 +0100
committerPierre-Marie Pédrot2020-02-04 10:46:19 +0100
commit077959dccaa6d2072dab844927ad7f1b7496b5fd (patch)
treebe110a10e5c809054c52df5050cb0e8e186fe350 /test-suite
parent1c1c04d0e3e02ce461fb953f08e2d8c68e52ee63 (diff)
Fix #11515: Ltac2 rewrite on wildcard.
There was an evar leak due to an evarmap not being threaded correctly when computing open terms.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_11515.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_11515.v b/test-suite/bugs/closed/bug_11515.v
new file mode 100644
index 0000000000..fe4ba87447
--- /dev/null
+++ b/test-suite/bugs/closed/bug_11515.v
@@ -0,0 +1,7 @@
+Require Import Ltac2.Ltac2.
+
+Lemma foo :
+ True.
+Proof.
+ Fail rewrite _.
+Abort.