aboutsummaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorLasse Blaauwbroek2020-10-22 03:25:15 +0200
committerLasse Blaauwbroek2020-10-22 19:39:45 +0200
commit67089b35889648196c1e7b378f77d368de0105a9 (patch)
tree713afc0979d2ed9881e08f5f4e6c291cf918ae79 /test-suite
parent9db73ef18c45238223f30a462fc2c6d20493d1d2 (diff)
Fix printing of wit_constr and some ssr problems with printing empty lists
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.