aboutsummaryrefslogtreecommitdiff
path: root/test-suite/bugs
diff options
context:
space:
mode:
authorJasper Hugunin2020-11-27 09:26:20 -0800
committerJasper Hugunin2020-11-27 09:26:51 -0800
commita1daae8800194166662c87e11a974a6ae3d24a4d (patch)
tree2c8cacdd9f38e089bcd32c2995e4107b6583a34d /test-suite/bugs
parent7f3c46acc937eb9257c29b5881e5a8b17b28cd48 (diff)
A small fix for freshness in the `change` tactic
Diffstat (limited to 'test-suite/bugs')
-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.