aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorcoqbot-app[bot]2020-10-27 21:14:22 +0000
committerGitHub2020-10-27 21:14:22 +0000
commit473160ebe4a835dde50d6c209ab17c7e1b84979c (patch)
tree2c2af05a266011d2f5268647640f123e1fdacf2a /test-suite
parentc8110e13cceab22dd855de7ee2114bcb4eedd699 (diff)
parent67089b35889648196c1e7b378f77d368de0105a9 (diff)
Merge PR #13238: Fix some tactic print bugs
Reviewed-by: gares Reviewed-by: herbelin Ack-by: ppedrot
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/output/bug_13238.out4
-rw-r--r--test-suite/output/bug_13238.v13
2 files changed, 17 insertions, 0 deletions
diff --git a/test-suite/output/bug_13238.out b/test-suite/output/bug_13238.out
new file mode 100644
index 0000000000..bda21aa9e3
--- /dev/null
+++ b/test-suite/output/bug_13238.out
@@ -0,0 +1,4 @@
+Ltac bug_13238.t1 x := replace (x x) with (x x)
+Ltac bug_13238.t2 x := case : x
+Ltac bug_13238.t3 := by move ->
+Ltac bug_13238.t4 := congr True
diff --git a/test-suite/output/bug_13238.v b/test-suite/output/bug_13238.v
new file mode 100644
index 0000000000..9b8063bf13
--- /dev/null
+++ b/test-suite/output/bug_13238.v
@@ -0,0 +1,13 @@
+Require Import ssreflect.
+
+Ltac t1 x := replace (x x) with (x x).
+Print t1.
+
+Ltac t2 x := case: x.
+Print t2.
+
+Ltac t3 := by move->.
+Print t3.
+
+Ltac t4 := congr True.
+Print t4.