aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-11-28 21:41:25 +0000
committerGitHub2020-11-28 21:41:25 +0000
commit9992bb15d4f90fc0cf3aa2854beb209bc5effac6 (patch)
tree6664a13c0bde2b0d00a22f815532fc4b1646ea9b /test-suite
parent7514bc25c6e8dffeb58ae9af0916dac83953d337 (diff)
parenta1daae8800194166662c87e11a974a6ae3d24a4d (diff)
Merge PR #13502: A small fix for freshness in the `change` tactic
Reviewed-by: herbelin
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/bugs/closed/bug_13493.v7
1 files changed, 7 insertions, 0 deletions
diff --git a/test-suite/bugs/closed/bug_13493.v b/test-suite/bugs/closed/bug_13493.v
new file mode 100644
index 0000000000..779df8e7f2
--- /dev/null
+++ b/test-suite/bugs/closed/bug_13493.v
@@ -0,0 +1,7 @@
+Set Mangle Names.
+
+Goal forall (m n:nat), True.
+ intros m n. compare m n.
+ - constructor.
+ - constructor.
+Qed.